diff options
| author | Gordon Sim <gsim@apache.org> | 2007-08-28 19:38:17 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2007-08-28 19:38:17 +0000 |
| commit | b7b4a5407af61099567b8f1b3765cfada6150312 (patch) | |
| tree | 84b36342792406d239c78b1fa040e9d3752a36c5 /qpid/cpp/src/tests/FramingTest.cpp | |
| parent | 6dacede976a8c5145ebc8bb74622403b5d8de204 (diff) | |
| download | qpid-python-b7b4a5407af61099567b8f1b3765cfada6150312.tar.gz | |
Updated message.transfer encoding to use header and content segments (including new structs).
Unified more between the basic and message classes messages.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@570538 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/FramingTest.cpp')
| -rw-r--r-- | qpid/cpp/src/tests/FramingTest.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/qpid/cpp/src/tests/FramingTest.cpp b/qpid/cpp/src/tests/FramingTest.cpp index a0dd8d37f6..1b843defc1 100644 --- a/qpid/cpp/src/tests/FramingTest.cpp +++ b/qpid/cpp/src/tests/FramingTest.cpp @@ -137,8 +137,7 @@ class FramingTest : public CppUnit::TestCase { std::string a = "hostA"; std::string b = "hostB"; - AMQFrame in(version, 999, - ConnectionRedirectBody(version, a, b)); + AMQFrame in(999, ConnectionRedirectBody(version, a, b)); in.encode(buffer); buffer.flip(); AMQFrame out; @@ -149,7 +148,7 @@ class FramingTest : public CppUnit::TestCase void testBasicConsumeOkBodyFrame() { std::string s = "hostA"; - AMQFrame in(version, 999, BasicConsumeOkBody(version, s)); + AMQFrame in(999, BasicConsumeOkBody(version, s)); in.encode(buffer); buffer.flip(); AMQFrame out; |
