Skip to content

Commit

Permalink
Fix 'App get users' test. Order not guarenteed
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsenko committed Apr 30, 2024
1 parent 02b5d8e commit e2ede42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/realm_dart/test/app_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ void main() {

final user = await app.logIn(Credentials.anonymous());
final user1 = await app.logIn(Credentials.emailPassword(testUsername, testPassword));
expect(app.users, [user1, user]);
expect(app.users, {user1, user});
});

baasTest('App delete user', (configuration) async {
Expand Down

0 comments on commit e2ede42

Please sign in to comment.