log4j-1.2-api/src/test/java/org/apache/log4j/LoggerTest.java:556 on master fails on OSX with the following error:
Test Year is null ==> expected: not <null>
I am suspecting parallel execution for this. That is, context map getting
mutated concurrently. Otherwise I have no idea why would this fail:
ThreadContext.put("TestYear", Integer.valueOf(2010).toString());
logger.debug("Debug message");
String testYear = ThreadContext.get("TestYear");
assertNotNull(testYear, "Test Year is null");
Any ideas?
