summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/SimpleTestCaseBase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/cpp/src/tests/SimpleTestCaseBase.cpp')
-rw-r--r--qpid/cpp/src/tests/SimpleTestCaseBase.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/tests/SimpleTestCaseBase.cpp b/qpid/cpp/src/tests/SimpleTestCaseBase.cpp
index 4f071cd02b..0111e030fb 100644
--- a/qpid/cpp/src/tests/SimpleTestCaseBase.cpp
+++ b/qpid/cpp/src/tests/SimpleTestCaseBase.cpp
@@ -47,7 +47,7 @@ void SimpleTestCaseBase::report(client::Message& report)
}
}
-SimpleTestCaseBase::Sender::Sender(TestOptions& options,
+SimpleTestCaseBase::Sender::Sender(ConnectionSettings& options,
const Exchange& _exchange,
const std::string& _key,
const int _messages)
@@ -67,8 +67,8 @@ void SimpleTestCaseBase::Sender::start(){
stop();
}
-SimpleTestCaseBase::Worker::Worker(TestOptions& options, const int _messages) :
- connection(options.trace), messages(_messages), count(0)
+SimpleTestCaseBase::Worker::Worker(ConnectionSettings& options, const int _messages) :
+ messages(_messages), count(0)
{
connection.open(options.host, options.port);
connection.openChannel(channel);