From 66c726e6993cd87646b71db7b8aab97286ba4807 Mon Sep 17 00:00:00 2001 From: Muhammad Raihan Akbar <ianakbar711@gmail.com> Date: Thu, 6 Mar 2025 21:49:09 +0700 Subject: [PATCH] [REFACTOR] Removed public identifier to fix maintainability issue --- .../safetypin/authentication/service/GoogleAuthServiceTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/safetypin/authentication/service/GoogleAuthServiceTest.java b/src/test/java/com/safetypin/authentication/service/GoogleAuthServiceTest.java index 7d4b6f1..797c159 100644 --- a/src/test/java/com/safetypin/authentication/service/GoogleAuthServiceTest.java +++ b/src/test/java/com/safetypin/authentication/service/GoogleAuthServiceTest.java @@ -33,7 +33,7 @@ import static org.mockito.ArgumentMatchers.*; import static org.mockito.Mockito.*; @ExtendWith(MockitoExtension.class) -public class GoogleAuthServiceTest { +class GoogleAuthServiceTest { @Mock private UserService userService; -- GitLab