diff options
Diffstat (limited to 'tests/netx/unit/net/sourceforge/jnlp')
-rw-r--r-- | tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/InformationElementTest.java | 2 |
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; |