Skip to content

Commit

Permalink
Address ktlint code analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
wzieba committed Apr 29, 2024
1 parent 82f903c commit 5a327ca
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import androidx.benchmark.junit4.BenchmarkRule
import androidx.benchmark.junit4.measureRepeated
import androidx.test.ext.junit.rules.ActivityScenarioRule
import androidx.test.ext.junit.runners.AndroidJUnit4
import com.automattic.android.tracks.TracksClient
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
import com.automattic.android.tracks.TracksClient
import java.lang.reflect.Field
import org.junit.Before

@RunWith(AndroidJUnit4::class)
class TrackingMethodsBenchmark {
Expand All @@ -31,7 +31,6 @@ class TrackingMethodsBenchmark {
val field: Field = TracksClient::class.java.getDeclaredField("mTracksRestEndpointURL")
field.isAccessible = true
field.set(tracksClient, "https://not-a-real-url.test")

}

@Test
Expand Down

0 comments on commit 5a327ca

Please sign in to comment.