]> source.dussan.org Git - archiva.git/commitdiff
updated test methods names archiva-security-fix 44/head archiva-security-fix
authorMaria Odea B. Ching <oching@apache.org>
Mon, 6 Oct 2008 07:24:04 +0000 (07:24 +0000)
committerMaria Odea B. Ching <oching@apache.org>
Mon, 6 Oct 2008 07:24:04 +0000 (07:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/branches/archiva-security-fix@701968 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-web/archiva-security/src/test/java/org/apache/maven/archiva/security/ArchivaServletAuthenticatorTest.java

index 0eeaedc726be363f27f461b639c97f1658ec4d67..d100b88ac1cb01a8268f35b1e44240059fb954f4 100644 (file)
@@ -186,7 +186,7 @@ public class ArchivaServletAuthenticatorTest
         }       
     }
     
-    public void testIsAuthorizedGustUserHasWriteAccess()
+    public void testIsAuthorizedGuestUserHasWriteAccess()
         throws Exception
     {   
         assignRepositoryManagerRole( USER_GUEST, "corporate" );        
@@ -195,7 +195,7 @@ public class ArchivaServletAuthenticatorTest
         assertTrue( isAuthorized );
     }
     
-    public void testIsAuthorizedGustUserHasNoWriteAccess()
+    public void testIsAuthorizedGuestUserHasNoWriteAccess()
         throws Exception
     {   
         assignRepositoryObserverRole( USER_GUEST, "corporate" );
@@ -204,7 +204,7 @@ public class ArchivaServletAuthenticatorTest
         assertFalse( isAuthorized );
     }
     
-    public void testIsAuthorizedGustUserHasReadAccess()
+    public void testIsAuthorizedGuestUserHasReadAccess()
         throws Exception
     {
         assignRepositoryObserverRole( USER_GUEST, "corporate" );
@@ -214,7 +214,7 @@ public class ArchivaServletAuthenticatorTest
         assertTrue( isAuthorized );        
     }
     
-    public void testIsAuthorizedGustUserHasNoReadAccess()
+    public void testIsAuthorizedGuestUserHasNoReadAccess()
         throws Exception
     {                   
         boolean isAuthorized = servletAuth.isAuthorized( USER_GUEST, "corporate", false );