diff --git a/src/test/java/com/safetypin/authentication/dto/GoogleAuthDTOTest.java b/src/test/java/com/safetypin/authentication/dto/GoogleAuthDTOTest.java
index 901f6f7250752ffab60d8d48021932e5b7951d4f..e7ec48fccb80385eb27e1a00eb67320aedbc11b8 100644
--- a/src/test/java/com/safetypin/authentication/dto/GoogleAuthDTOTest.java
+++ b/src/test/java/com/safetypin/authentication/dto/GoogleAuthDTOTest.java
@@ -121,7 +121,7 @@ class GoogleAuthDTOTest {
         // Test equals
         assertEquals(dto1, dto2, "Identical DTOs should be equal");
         assertNotEquals(dto1, dto3, "Different DTOs should not be equal");
-        assertNotEquals(dto1, null, "Should not be equal to null");
+        assertNotEquals(null, dto1, "Should not be equal to null");
         assertNotEquals(dto1, new Object(), "Should not be equal to different object type");
 
         // Test hashCode