You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2013/08/05 19:49:04 UTC

svn commit: r1510625 - /commons/proper/email/trunk/src/test/java/org/apache/commons/mail/DefaultAuthenticatorTest.java

Author: britter
Date: Mon Aug  5 17:49:04 2013
New Revision: 1510625

URL: http://svn.apache.org/r1510625
Log:
Fix typo

Modified:
    commons/proper/email/trunk/src/test/java/org/apache/commons/mail/DefaultAuthenticatorTest.java

Modified: commons/proper/email/trunk/src/test/java/org/apache/commons/mail/DefaultAuthenticatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/email/trunk/src/test/java/org/apache/commons/mail/DefaultAuthenticatorTest.java?rev=1510625&r1=1510624&r2=1510625&view=diff
==============================================================================
--- commons/proper/email/trunk/src/test/java/org/apache/commons/mail/DefaultAuthenticatorTest.java (original)
+++ commons/proper/email/trunk/src/test/java/org/apache/commons/mail/DefaultAuthenticatorTest.java Mon Aug  5 17:49:04 2013
@@ -36,17 +36,17 @@ public class DefaultAuthenticatorTest
         //insert code testing basic functionality
         String strUsername = "user.name";
         String strPassword = "user.pwd";
-        DefaultAuthenticator authenicator = new DefaultAuthenticator(strUsername, strPassword);
+        DefaultAuthenticator authenticator = new DefaultAuthenticator(strUsername, strPassword);
 
         assertTrue(
             PasswordAuthentication.class.isInstance(
-                authenicator.getPasswordAuthentication()));
+                    authenticator.getPasswordAuthentication()));
         assertEquals(
-            strUsername,
-            authenicator.getPasswordAuthentication().getUserName());
+                strUsername,
+                authenticator.getPasswordAuthentication().getUserName());
         assertEquals(
             strPassword,
-            authenicator.getPasswordAuthentication().getPassword());
+            authenticator.getPasswordAuthentication().getPassword());
     }
 
 }