File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
amplify_auth_cognito_dart/example
amplify_auth_cognito/example Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ void main() {
144
144
because: 'Sign out should succeed even if user is deleted' ,
145
145
cognitoPlugin.signOut (),
146
146
).completes (
147
- it ()
147
+ (it) => it
148
148
..has ((res) => res.signedOutLocally, 'signedOutLocally' ).isTrue (),
149
149
);
150
150
});
@@ -178,8 +178,9 @@ void main() {
178
178
'credentials are expired' ,
179
179
cognitoPlugin.signOut (),
180
180
).completes (
181
- it ()
182
- ..has ((res) => res.signedOutLocally, 'signedOutLocally' ).isTrue (),
181
+ (it) => it
182
+ .has ((res) => res.signedOutLocally, 'signedOutLocally' )
183
+ .isTrue (),
183
184
);
184
185
});
185
186
});
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ dev_dependencies:
28
28
path : ../../../amplify_lints
29
29
async : ^2.10.0
30
30
aws_signature_v4 : any
31
- checks : ^0.2 .0
31
+ checks : ^0.3 .0
32
32
collection : any
33
33
flutter_driver :
34
34
sdk : flutter
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ dev_dependencies:
25
25
browser_launcher : ^1.1.1
26
26
build_runner : ^2.4.0
27
27
build_web_compilers : ^4.0.0
28
- checks : ^0.2 .0
28
+ checks : ^0.3 .0
29
29
cli_script : ^0.3.0
30
30
io : ^1.0.0
31
31
mime : ^1.0.0
You can’t perform that action at this time.
0 commit comments