Thank you! I was sloppy. 

Sent from my iPhone

> On 2015/10/22, at 5:12, [email protected] wrote:
> 
> Repository: logging-log4j2
> Updated Branches:
>  refs/heads/master 0eb6ddfbf -> 3da6c31db
> 
> 
> Fix test to match code change.
> 
> Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
> Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/3da6c31d
> Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/3da6c31d
> Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/3da6c31d
> 
> Branch: refs/heads/master
> Commit: 3da6c31dbe096a1967f32b12c4ef3e93704da963
> Parents: 0eb6ddf
> Author: ggregory <[email protected]>
> Authored: Wed Oct 21 13:11:49 2015 -0700
> Committer: ggregory <[email protected]>
> Committed: Wed Oct 21 13:11:49 2015 -0700
> 
> ----------------------------------------------------------------------
> .../logging/log4j/core/async/AsyncLoggerContextSelectorTest.java   | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> ----------------------------------------------------------------------
> 
> 
> http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/3da6c31d/log4j-core/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerContextSelectorTest.java
> ----------------------------------------------------------------------
> diff --git 
> a/log4j-core/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerContextSelectorTest.java
>  
> b/log4j-core/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerContextSelectorTest.java
> index dc60aab..3bae290 100644
> --- 
> a/log4j-core/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerContextSelectorTest.java
> +++ 
> b/log4j-core/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerContextSelectorTest.java
> @@ -54,7 +54,7 @@ public class AsyncLoggerContextSelectorTest {
>     public void testContextNameIsAsyncLoggerContextWithClassHashCode() {
>         final AsyncLoggerContextSelector selector = new 
> AsyncLoggerContextSelector();
>         final LoggerContext context = selector.getContext(null, null, false);
> -        final String expectedContextName = "AsyncLoggerContext@" + 
> AsyncLoggerContext.class.hashCode();
> +        final String expectedContextName = "AsyncLoggerContext@" + 
> Integer.toHexString(AsyncLoggerContext.class.hashCode());
>         assertEquals(expectedContextName, context.getName());
>     }
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to