summaryrefslogtreecommitdiff
path: root/qpid/java/common/src/test
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2008-04-16 13:32:13 +0000
committerRafael H. Schloming <rhs@apache.org>2008-04-16 13:32:13 +0000
commitbbe30c7875f67547ea9394d4e99b420ac22ef152 (patch)
tree3bd76d813efccb16ba86f49982e3f24725659174 /qpid/java/common/src/test
parent857ba162eba08e8c210492a0ea265a6bd4439467 (diff)
downloadqpid-python-bbe30c7875f67547ea9394d4e99b420ac22ef152.tar.gz
QPID-901: updates to the java client to use the 0-10 final spec instead of the 0-10 preview spec; this includes improvements to the codegen process as well as some modifications to the shared code path in the client to not lose per message state when consumers are closed.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@648692 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/common/src/test')
-rw-r--r--qpid/java/common/src/test/java/org/apache/qpidity/transport/ConnectionTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/java/common/src/test/java/org/apache/qpidity/transport/ConnectionTest.java b/qpid/java/common/src/test/java/org/apache/qpidity/transport/ConnectionTest.java
index d7ece9b745..1a83786e12 100644
--- a/qpid/java/common/src/test/java/org/apache/qpidity/transport/ConnectionTest.java
+++ b/qpid/java/common/src/test/java/org/apache/qpidity/transport/ConnectionTest.java
@@ -100,12 +100,12 @@ public class ConnectionTest extends TestCase
}
Channel ch = conn.getChannel(0);
- Session ssn = new Session();
+ Session ssn = new Session("test".getBytes());
ssn.attach(ch);
try
{
- ssn.sessionOpen(1234);
+ ssn.sessionAttach(ssn.getName());
fail("writing to a closed socket succeeded");
}
catch (TransportException e)