Skip to content

Commit 140f64e

Browse files
committed
style: misc
1 parent 778cf8e commit 140f64e

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

test/src/models/auth_success_response_test.dart

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,11 @@ void main() {
117117
});
118118

119119
test('should create a copy with both user and token updated', () {
120-
const updatedUser = User(id: 'user-789', isAnonymous: true, isAdmin: false);
120+
const updatedUser = User(
121+
id: 'user-789',
122+
isAnonymous: true,
123+
isAdmin: false,
124+
);
121125
const updatedToken = 'another-token-xyz';
122126
final copiedResponse = authSuccessResponse.copyWith(
123127
user: updatedUser,
@@ -139,7 +143,11 @@ void main() {
139143
});
140144

141145
test('should not equate instances with different users', () {
142-
const differentUser = User(id: 'diff-user', isAnonymous: false, isAdmin: false);
146+
const differentUser = User(
147+
id: 'diff-user',
148+
isAnonymous: false,
149+
isAdmin: false,
150+
);
143151
const response1 = AuthSuccessResponse(user: testUser, token: testToken);
144152
const response2 = AuthSuccessResponse(
145153
user: differentUser,

0 commit comments

Comments
 (0)