--- jsr166/src/test/tck/ExecutorsTest.java 2004/01/27 11:37:00 1.16 +++ jsr166/src/test/tck/ExecutorsTest.java 2006/04/03 15:00:59 1.17 @@ -337,7 +337,7 @@ public class ExecutorsTest extends JSR16 try { Thread current = Thread.currentThread(); threadAssertTrue(!current.isDaemon()); - threadAssertTrue(current.getPriority() == Thread.NORM_PRIORITY); + threadAssertTrue(current.getPriority() <= Thread.NORM_PRIORITY); ThreadGroup g = current.getThreadGroup(); SecurityManager s = System.getSecurityManager(); if (s != null) @@ -392,7 +392,7 @@ public class ExecutorsTest extends JSR16 try { Thread current = Thread.currentThread(); threadAssertTrue(!current.isDaemon()); - threadAssertTrue(current.getPriority() == Thread.NORM_PRIORITY); + threadAssertTrue(current.getPriority() <= Thread.NORM_PRIORITY); ThreadGroup g = current.getThreadGroup(); SecurityManager s = System.getSecurityManager(); if (s != null)