File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/com/github/renancvitor/inventory/service/authentication Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ void shouldSuccessfullyAuthenticate() {
7474 JWTTokenData result = authenticationService .authentication (data , authenticationManager );
7575
7676 assertNotNull (result );
77- assertEquals ("randomJwt" , result .tokem ());
77+ assertEquals ("randomJwt" , result .token ());
7878 assertEquals (loggedInUser .getId (), result .user ().id ());
7979 }
8080
@@ -107,7 +107,7 @@ void shouldReturnCorrectFirstAccessFlag() {
107107 JWTTokenData result = authenticationService .authentication (data , authenticationManager );
108108
109109 assertTrue (result .firstAccess ());
110- assertEquals ("jwt" , result .tokem ());
110+ assertEquals ("jwt" , result .token ());
111111 }
112112
113113 @ Test
You can’t perform that action at this time.
0 commit comments