Skip to main content
summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMarkus Knauer2007-10-22 12:59:15 +0000
committerMarkus Knauer2007-10-22 12:59:15 +0000
commit7f558124890cc9cedbc914ba3f8c6dc7d41e43ce (patch)
tree40cb38c18fe3a7d3039e63f140edea1d4264d9b8 /test
parent86fbe2404b925234136d57d5f7274a8d7685fdc3 (diff)
downloadorg.eclipse.epp.packages-7f558124890cc9cedbc914ba3f8c6dc7d41e43ce.tar.gz
org.eclipse.epp.packages-7f558124890cc9cedbc914ba3f8c6dc7d41e43ce.tar.xz
org.eclipse.epp.packages-7f558124890cc9cedbc914ba3f8c6dc7d41e43ce.zip
update due to new IApplication interface
Diffstat (limited to 'test')
-rw-r--r--test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/configuration/CommandLineParser_Test.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/configuration/CommandLineParser_Test.java b/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/configuration/CommandLineParser_Test.java
index 15e12a1f..0c0e3015 100644
--- a/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/configuration/CommandLineParser_Test.java
+++ b/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/configuration/CommandLineParser_Test.java
@@ -47,7 +47,7 @@ public class CommandLineParser_Test extends TestCase {
public void testBadArgumentType() throws Exception {
try {
- ArgumentParser.parse( Boolean.TRUE );
+ ArgumentParser.parse( null );
fail();
} catch( IllegalArgumentException e ) {
// expected exception

Back to the top