File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments