aboutsummaryrefslogtreecommitdiffstats
path: root/tests/netx/unit/net/sourceforge/jnlp
diff options
context:
space:
mode:
authorJiri Vanek <[email protected]>2013-01-03 09:54:16 +0100
committerJiri Vanek <[email protected]>2013-01-03 09:54:16 +0100
commit76b269de114c531cf01187dc29caa9a76de34580 (patch)
treeea175fe61899f6361d63c88aa535ad446b26b566 /tests/netx/unit/net/sourceforge/jnlp
parentcece76d49f109a185715d1c901d1a894c741dbf4 (diff)
Fixed unittest for InformationElement
Diffstat (limited to 'tests/netx/unit/net/sourceforge/jnlp')
-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 df844f1..3cf06b2 100644
--- a/tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/InformationElementTest.java
+++ b/tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/InformationElementTest.java
@@ -232,7 +232,7 @@ public class InformationElementTest {
}
Assert.assertNotNull(ex);
InformationElement ie1 = InformationElement.createFromJNLP(jnlpFile1);
- Assert.assertNull(ie1);
+ Assert.assertNotNull(ie1);
//title, vendor and homepage are obligatory.. not so much to test
String exJnlp2 = testJnlpheader + title.toXml() + "\n" + homepage.toXml() + "\n" + vendor.toXml() + "\n" + testJnlpFooter;