diff --git a/test/services/service_authentication_test.go b/test/services/service_authentication_test.go index e6fc541..33d02e4 100644 --- a/test/services/service_authentication_test.go +++ b/test/services/service_authentication_test.go @@ -40,7 +40,7 @@ func TestNewGopostrAuthentication(t *testing.T) { mockUserRepo := MockedUserRepository{} authenticationService := services.NewGopostrAuthenticationService(mockUserRepo) - assert.IsType(t, services.GopostrAuthenticationService{}, authenticationService) + assert.IsType(t, &services.GopostrAuthenticationService{}, authenticationService) } func TestAuthenticateWithCredentials(t *testing.T) {