You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/02/23 17:09:54 UTC

svn commit: r747060 - /commons/proper/exec/trunk/src/test/java/org/apache/commons/exec/environment/EnvironmentUtilTest.java

Author: sebb
Date: Mon Feb 23 16:09:54 2009
New Revision: 747060

URL: http://svn.apache.org/viewvc?rev=747060&view=rev
Log:
Duh - only run case-insensitive key lookup on Windows

Modified:
    commons/proper/exec/trunk/src/test/java/org/apache/commons/exec/environment/EnvironmentUtilTest.java

Modified: commons/proper/exec/trunk/src/test/java/org/apache/commons/exec/environment/EnvironmentUtilTest.java
URL: http://svn.apache.org/viewvc/commons/proper/exec/trunk/src/test/java/org/apache/commons/exec/environment/EnvironmentUtilTest.java?rev=747060&r1=747059&r2=747060&view=diff
==============================================================================
--- commons/proper/exec/trunk/src/test/java/org/apache/commons/exec/environment/EnvironmentUtilTest.java (original)
+++ commons/proper/exec/trunk/src/test/java/org/apache/commons/exec/environment/EnvironmentUtilTest.java Mon Feb 23 16:09:54 2009
@@ -99,8 +99,6 @@
         Map procEnvironment = EnvironmentUtils.getProcEnvironment();
         // Check that case is preserved for values
         EnvironmentUtils.addVariableToEnvironment( procEnvironment, "foo=bAr" );
-        assertEquals("bAr", procEnvironment.get("FOO"));
-        assertEquals("bAr", procEnvironment.get("Foo"));
         assertEquals("bAr", procEnvironment.get("foo"));
     }