From c6a3bc57b6b96407d7b203e319e947e9d9aed31c Mon Sep 17 00:00:00 2001 From: Sasha Sherstnev Date: Fri, 20 Sep 2013 14:35:23 +0100 Subject: [PATCH] add lost exception --- testsrc/compbio/engine/conf/RunnerConfigMarshallerTester.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/testsrc/compbio/engine/conf/RunnerConfigMarshallerTester.java b/testsrc/compbio/engine/conf/RunnerConfigMarshallerTester.java index 2263857..8daacff 100644 --- a/testsrc/compbio/engine/conf/RunnerConfigMarshallerTester.java +++ b/testsrc/compbio/engine/conf/RunnerConfigMarshallerTester.java @@ -238,10 +238,9 @@ public class RunnerConfigMarshallerTester { @Test(expectedExceptions = JAXBException.class) public void testValidationOnMarshalling() throws SAXException, - JAXBException { + JAXBException, MalformedURLException { // This is not valid parameter - Parameter p = new Parameter("MATRIXXX", - "Protein weight matrix"); + Parameter p = new Parameter("MATRIXXX", "Protein weight matrix"); // This attribute is required by strict schema // p.setOptionName("-M"); p.setRequired(true); -- 1.7.10.2