Skip to content

Commit

Permalink
Apply formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
buenaflor committed Jun 10, 2024
1 parent d14f206 commit 77e659f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions flutter/test/integrations/load_contexts_integration_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ void main() {
expect(event.breadcrumbs!.first.message, 'native-mutated-applied');
});

test('apply default IP to user during captureEvent after loading context', () async {
test('apply default IP to user during captureEvent after loading context',
() async {
fixture.options.enableScopeSync = true;

const expectedIp = '{{auto}}';
Expand All @@ -147,9 +148,7 @@ void main() {
final options = fixture.options;

final user = SentryUser(id: expectedId);
Map<String, dynamic> loadContexts = {
'user': user.toJson()
};
Map<String, dynamic> loadContexts = {'user': user.toJson()};
final future = Future.value(loadContexts);
when(fixture.methodChannel.invokeMethod<dynamic>('loadContexts'))
.thenAnswer((_) => future);
Expand Down

0 comments on commit 77e659f

Please sign in to comment.