We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47c6137 commit 92d70d1Copy full SHA for 92d70d1
test/oauth_interceptor_test.dart
@@ -43,7 +43,7 @@ void main() {
43
44
test('HeaderInterceptor does not add IDToken when available to headers', () async {
45
// arrange
46
- when(mockOAuthChopper.token).thenAnswer((_) async => testIDtoken);
+ when(()=>mockOAuthChopper.token).thenAnswer((_) async => testIDtoken);
47
final interceptor = OAuthInterceptor(mockOAuthChopper);
48
final expected = {'Authorization': 'Bearer token'};
49
0 commit comments