Woking on implementing support for SIP

Extended fail message to include exception details.
cusax-fix
Emil Ivov 20 years ago
parent c6b8f04587
commit 87d7806556

@ -122,7 +122,7 @@ public void testInstallationPersistency() throws Exception
}
catch (InvalidSyntaxException ex)
{
fail("We apparently got our filter wrong");
fail("We apparently got our filter wrong: " + ex.getMessage());
}
//make sure we didn't see a service
@ -170,7 +170,7 @@ public void testInstallationPersistency() throws Exception
}
catch (InvalidSyntaxException ex)
{
fail("We apparently got our filter wrong");
fail("We apparently got our filter wrong " + ex.getMessage());
}
//make sure we didn't see a service
@ -188,7 +188,7 @@ public void testInstallationPersistency() throws Exception
}
catch (InvalidSyntaxException ex)
{
fail("We apparently got our filter wrong");
fail("We apparently got our filter wrong " + ex.getMessage());
}
//we're the ones who've reinstalled the factory so it's our
@ -247,7 +247,7 @@ public void testUninstallAccount()
}
catch (InvalidSyntaxException ex)
{
fail("We apparently got our filter wrong");
fail("We apparently got our filter wrong " + ex.getMessage());
}
//make sure we didn't see a service

Loading…
Cancel
Save