Skip to content

Commit 6a11fb4

Browse files
authored
test(auth): Fix e2e test (#2880)
`additionalInfo` now returns and empty map instead of `null` by default
1 parent 6b9882c commit 6a11fb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ void main() {
9191
username: username,
9292
password: password,
9393
);
94-
expect(result.nextStep.additionalInfo, isNull);
94+
expect(result.nextStep.additionalInfo, isEmpty);
9595
});
9696

9797
asyncTest(

0 commit comments

Comments
 (0)