Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Oct 18, 2022
1 parent d358b70 commit f59ebe4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions test/configcat_client_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ void main() {
when(cache.read(any)).thenAnswer((_) => Future.value(''));
client = ConfigCatClient.get(
sdkKey: testSdkKey,
options:
ConfigCatOptions(pollingMode: PollingMode.manualPoll(), cache: cache));
options: ConfigCatOptions(
pollingMode: PollingMode.manualPoll(), cache: cache));
client.httpClient.interceptors.add(interceptor);
dioAdapter = DioAdapter(dio: client.httpClient);
});
Expand Down Expand Up @@ -398,7 +398,9 @@ void main() {
final localClient = ConfigCatClient.get(
sdkKey: "init local",
options: ConfigCatOptions(
pollingMode: PollingMode.manualPoll(), cache: cache, offline: true));
pollingMode: PollingMode.manualPoll(),
cache: cache,
offline: true));
localClient.httpClient.interceptors.add(interceptor);
final localDioAdapter = DioAdapter(dio: client.httpClient);

Expand Down

0 comments on commit f59ebe4

Please sign in to comment.