Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bgiori committed Nov 24, 2024
1 parent 9f53dca commit d927855
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,12 @@ internal class DefaultExperimentClient internal constructor(
config.flagConfigPollingIntervalMillis
}

private val poller: Poller = Poller(
this.executorService,
::doFlags,
flagConfigPollingIntervalMillis
)
private val poller: Poller =
Poller(
this.executorService,
::doFlags,
flagConfigPollingIntervalMillis,
)

internal val serverUrl: HttpUrl =
if (config.serverUrl == ExperimentConfig.Defaults.SERVER_URL &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ class ExperimentClientTest {
DefaultExperimentClient(
API_KEY,
ExperimentConfig(
flagConfigPollingIntervalMillis = 1000
flagConfigPollingIntervalMillis = 1000,
),
OkHttpClient(),
mockStorage,
Expand All @@ -1330,7 +1330,7 @@ class ExperimentClientTest {
DefaultExperimentClient(
API_KEY,
ExperimentConfig(
flagConfigPollingIntervalMillis = 900000
flagConfigPollingIntervalMillis = 900000,
),
OkHttpClient(),
mockStorage,
Expand Down

0 comments on commit d927855

Please sign in to comment.