aboutsummaryrefslogtreecommitdiffstats
path: root/tests/netx
diff options
context:
space:
mode:
authorJiri Vanek <[email protected]>2013-01-02 19:46:16 +0100
committerJiri Vanek <[email protected]>2013-01-02 19:46:16 +0100
commitcece76d49f109a185715d1c901d1a894c741dbf4 (patch)
tree33f63a2dfd6362d7eb03d9e6bb7a01c0222f7ef6 /tests/netx
parent3b55866f3df276463317e972a63a816d75060673 (diff)
Fixed unittest for InformationElement
Diffstat (limited to 'tests/netx')
-rw-r--r--tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/InformationElementTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/InformationElementTest.java b/tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/InformationElementTest.java
index e02f5e5..df844f1 100644
--- a/tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/InformationElementTest.java
+++ b/tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/InformationElementTest.java
@@ -221,7 +221,7 @@ public class InformationElementTest {
public void createFromJNLP() throws UnsupportedEncodingException, ParseException {
JNLPFile jnlpFile0 = null;
InformationElement ie0 = InformationElement.createFromJNLP(jnlpFile0);
- Assert.assertNull(ie0);
+ Assert.assertNotNull(ie0);
String exJnlp1 = "<jnlp>this is invalid jnlp<jnlp>";
Exception ex = null;
JNLPFile jnlpFile1 = null;