diff --git a/src/test/java/com/safetypin/authentication/service/AuthenticationServiceTest.java b/src/test/java/com/safetypin/authentication/service/AuthenticationServiceTest.java
index 97b3d107e86541481058024dc228798d75c85308..1dbe0c18b7990901d9750957903dc6ae500182be 100644
--- a/src/test/java/com/safetypin/authentication/service/AuthenticationServiceTest.java
+++ b/src/test/java/com/safetypin/authentication/service/AuthenticationServiceTest.java
@@ -430,7 +430,7 @@ class AuthenticationServiceTest {
         user.setSocialId(null);
 
         when(userRepository.findByEmail("test@example.com")).thenReturn(user);
-        String response = authenticationService.postContent("test@example.com", "Content");
-        assertEquals("Content posted successfully", response);
+        String response = authenticationService.postContent("test@example.com", "ThisIsAContent");
+        assertEquals("Content 'ThisIsAContent' posted successfully.", response);
     }
 }