Woking on implementing support for SIP

Extended failure message
cusax-fix
Emil Ivov 19 years ago
parent 3aa5206393
commit 255a88b867

@ -187,7 +187,7 @@ public void testInstallationPersistency()
}
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
@ -236,7 +236,7 @@ public void testInstallationPersistency()
}
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
@ -254,7 +254,7 @@ public void testInstallationPersistency()
}
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
@ -308,7 +308,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

@ -79,7 +79,7 @@ public void testAccountUninstallationPersistency()
}
catch (InvalidSyntaxException ex)
{
fail("We apparently got our filter wrong");
fail("We apparently got our filter wrong " + ex.getMessage());
}
//make sure we didn't retrieve a service

Loading…
Cancel
Save