diff options
| author | Rajith Muditha Attapattu <rajith@apache.org> | 2010-03-08 19:21:43 +0000 |
|---|---|---|
| committer | Rajith Muditha Attapattu <rajith@apache.org> | 2010-03-08 19:21:43 +0000 |
| commit | b8e1d492c8ecab1a9e082f835aa11f82ffbada00 (patch) | |
| tree | 6ff52659fa84cbeae8e34782c954afd4919f34f1 /qpid/java | |
| parent | 5202caa81535cb17b17fa66f05d851002ce850d7 (diff) | |
| download | qpid-python-b8e1d492c8ecab1a9e082f835aa11f82ffbada00.tar.gz | |
Fixed test cases to include the queue name in the expected error string
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@920466 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
| -rw-r--r-- | qpid/java/systests/src/main/java/org/apache/qpid/test/client/destination/AddressBasedDestinationTest.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/destination/AddressBasedDestinationTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/destination/AddressBasedDestinationTest.java index aeddfd00fe..732a28553c 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/destination/AddressBasedDestinationTest.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/destination/AddressBasedDestinationTest.java @@ -77,7 +77,7 @@ public class AddressBasedDestinationTest extends QpidTestCase } catch(JMSException e) { - assertTrue(e.getMessage().contains("The name supplied in the address " + + assertTrue(e.getMessage().contains("The name 'testQueue1' supplied in the address " + "doesn't resolve to an exchange or a queue")); } @@ -140,7 +140,7 @@ public class AddressBasedDestinationTest extends QpidTestCase } catch(JMSException e) { - assertTrue(e.getMessage().contains("The name supplied in the address " + + assertTrue(e.getMessage().contains("The name 'testQueue3' supplied in the address " + "doesn't resolve to an exchange or a queue")); } @@ -150,7 +150,7 @@ public class AddressBasedDestinationTest extends QpidTestCase } catch(JMSException e) { - assertTrue(e.getMessage().contains("The name supplied in the address " + + assertTrue(e.getMessage().contains("The name 'testQueue3' supplied in the address " + "doesn't resolve to an exchange or a queue")); } @@ -167,7 +167,7 @@ public class AddressBasedDestinationTest extends QpidTestCase } catch(JMSException e) { - assertTrue(e.getMessage().contains("The name supplied in the address " + + assertTrue(e.getMessage().contains("The name 'testQueue3' supplied in the address " + "doesn't resolve to an exchange or a queue")); } assertFalse("Queue should not be created",( |
