aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-04-25 14:00:07 +0200
committerSven Gothel <[email protected]>2012-04-25 14:00:07 +0200
commit03641bd7d15334ad3a4be9c337fc622f15884b05 (patch)
treec14cb3a35a8b49d492cd240374971b316dedfd22
parent85c39e01ccdb825d11bde8646b847960ddda9432 (diff)
UITest, fix exception message: Add 'not'.v2.0-rc7
-rw-r--r--src/test/com/jogamp/opengl/test/junit/util/UITestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/util/UITestCase.java b/src/test/com/jogamp/opengl/test/junit/util/UITestCase.java
index cc5986f28..368291a29 100644
--- a/src/test/com/jogamp/opengl/test/junit/util/UITestCase.java
+++ b/src/test/com/jogamp/opengl/test/junit/util/UITestCase.java
@@ -59,7 +59,7 @@ public abstract class UITestCase {
// singletonInstance = SingletonInstance.createFileLock(SINGLE_INSTANCE_LOCK_POLL, SINGLE_INSTANCE_LOCK_FILE);
singletonInstance = SingletonInstance.createServerSocket(SINGLE_INSTANCE_LOCK_POLL, SINGLE_INSTANCE_LOCK_PORT);
if(!singletonInstance.tryLock(SINGLE_INSTANCE_LOCK_TO)) {
- throw new RuntimeException("Fatal: Could lock single instance: "+singletonInstance.getName());
+ throw new RuntimeException("Fatal: Could not lock single instance: "+singletonInstance.getName());
}
}
}