Skip to content

Commit e0aa969

Browse files
committed
test: fix typo in sign_out_test.dart
- Fixed typo in verifyNever call
1 parent fcfd1b1 commit e0aa969

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/routes/api/v1/auth/sign_out_test.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ void main() {
7979
// Assert
8080
expect(response.statusCode, equals(HttpStatus.methodNotAllowed));
8181
verifyNever(
82-
() => mockAuthService.performSignOut(userId: any(named: 'userId')),);
82+
() => mockAuthService.performSignOut(userId: any(named: 'userId')),
83+
);
8384
});
8485

8586
test('throws UnauthorizedException if user is null in context', () async {
@@ -108,7 +109,8 @@ void main() {
108109
),
109110
);
110111
verifyNever(
111-
() => mockAuthService.performSignOut(userId: any(named: 'userId')),);
112+
() => mockAuthService.performSignOut(userId: any(named: 'userId')),
113+
);
112114
});
113115

114116
test('rethrows HtHttpException from AuthService', () async {

0 commit comments

Comments
 (0)