Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 68225 invoked from network); 14 Dec 2006 05:44:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Dec 2006 05:44:43 -0000 Received: (qmail 95407 invoked by uid 500); 14 Dec 2006 05:44:50 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 95334 invoked by uid 500); 14 Dec 2006 05:44:50 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 95325 invoked by uid 99); 14 Dec 2006 05:44:50 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Dec 2006 21:44:50 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Dec 2006 21:44:42 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id BE6BB1A981A; Wed, 13 Dec 2006 21:43:56 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r486973 - /harmony/enhanced/classlib/trunk/modules/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/LoginContextTest.java Date: Thu, 14 Dec 2006 05:43:56 -0000 To: commits@harmony.apache.org From: smishura@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061214054356.BE6BB1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: smishura Date: Wed Dec 13 21:43:56 2006 New Revision: 486973 URL: http://svn.apache.org/viewvc?view=rev&rev=486973 Log: Minor correction Modified: harmony/enhanced/classlib/trunk/modules/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/LoginContextTest.java Modified: harmony/enhanced/classlib/trunk/modules/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/LoginContextTest.java URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/LoginContextTest.java?view=diff&rev=486973&r1=486972&r2=486973 ============================================================================== --- harmony/enhanced/classlib/trunk/modules/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/LoginContextTest.java (original) +++ harmony/enhanced/classlib/trunk/modules/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/LoginContextTest.java Wed Dec 13 21:43:56 2006 @@ -770,7 +770,7 @@ // tmp user home to avoid presence of ${user.home}/.java.login.config String tmpUserHome = System.getProperty("java.io.tmpdir") - + File.separatorChar + "tmpUserHomeForLoggingContextTest"; + + File.separatorChar + "tmpUserHomeForLoginContextTest"; File dir = new File(tmpUserHome); if (!dir.exists()) { dir.mkdirs();