You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by va...@apache.org on 2007/10/21 15:49:49 UTC

svn commit: r586897 - /geronimo/server/trunk/modules/geronimo-security/src/test/java/org/apache/geronimo/security/jaas/LoginPropertiesFileTest.java

Author: vamsic007
Date: Sun Oct 21 06:49:48 2007
New Revision: 586897

URL: http://svn.apache.org/viewvc?rev=586897&view=rev
Log:
Fix error message in the test case.

Modified:
    geronimo/server/trunk/modules/geronimo-security/src/test/java/org/apache/geronimo/security/jaas/LoginPropertiesFileTest.java

Modified: geronimo/server/trunk/modules/geronimo-security/src/test/java/org/apache/geronimo/security/jaas/LoginPropertiesFileTest.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-security/src/test/java/org/apache/geronimo/security/jaas/LoginPropertiesFileTest.java?rev=586897&r1=586896&r2=586897&view=diff
==============================================================================
--- geronimo/server/trunk/modules/geronimo-security/src/test/java/org/apache/geronimo/security/jaas/LoginPropertiesFileTest.java (original)
+++ geronimo/server/trunk/modules/geronimo-security/src/test/java/org/apache/geronimo/security/jaas/LoginPropertiesFileTest.java Sun Oct 21 06:49:48 2007
@@ -128,7 +128,7 @@
 
         try {
             context.login();
-            fail("Should not allow this login with null username");
+            fail("Should not allow this login with bad username");
         } catch (LoginException e) {
         }
     }
@@ -148,7 +148,7 @@
 
         try {
             context.login();
-            fail("Should not allow this login with null password");
+            fail("Should not allow this login with bad password");
         } catch (LoginException e) {
         }
     }