Skip to content

Commit 400a8a7

Browse files
authored
chore: bump checks to ^0.3.0 (#4489)
1 parent f4a14e5 commit 400a8a7

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

packages/auth/amplify_auth_cognito/example/integration_test/sign_out_test.dart

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ void main() {
144144
because: 'Sign out should succeed even if user is deleted',
145145
cognitoPlugin.signOut(),
146146
).completes(
147-
it()
147+
(it) => it
148148
..has((res) => res.signedOutLocally, 'signedOutLocally').isTrue(),
149149
);
150150
});
@@ -178,8 +178,9 @@ void main() {
178178
'credentials are expired',
179179
cognitoPlugin.signOut(),
180180
).completes(
181-
it()
182-
..has((res) => res.signedOutLocally, 'signedOutLocally').isTrue(),
181+
(it) => it
182+
.has((res) => res.signedOutLocally, 'signedOutLocally')
183+
.isTrue(),
183184
);
184185
});
185186
});

packages/auth/amplify_auth_cognito/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dev_dependencies:
2828
path: ../../../amplify_lints
2929
async: ^2.10.0
3030
aws_signature_v4: any
31-
checks: ^0.2.0
31+
checks: ^0.3.0
3232
collection: any
3333
flutter_driver:
3434
sdk: flutter

packages/auth/amplify_auth_cognito_dart/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dev_dependencies:
2525
browser_launcher: ^1.1.1
2626
build_runner: ^2.4.0
2727
build_web_compilers: ^4.0.0
28-
checks: ^0.2.0
28+
checks: ^0.3.0
2929
cli_script: ^0.3.0
3030
io: ^1.0.0
3131
mime: ^1.0.0

0 commit comments

Comments
 (0)