summaryrefslogtreecommitdiff
path: root/cpp/src/tests/storePerftools/asyncPerf/MessageConsumer.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/tests/storePerftools/asyncPerf/MessageConsumer.h')
-rw-r--r--cpp/src/tests/storePerftools/asyncPerf/MessageConsumer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/tests/storePerftools/asyncPerf/MessageConsumer.h b/cpp/src/tests/storePerftools/asyncPerf/MessageConsumer.h
index f11b605244..7f5816b6a0 100644
--- a/cpp/src/tests/storePerftools/asyncPerf/MessageConsumer.h
+++ b/cpp/src/tests/storePerftools/asyncPerf/MessageConsumer.h
@@ -30,21 +30,21 @@ namespace tests {
namespace storePerftools {
namespace asyncPerf {
-class MockPersistableQueue;
+class SimplePersistableQueue;
class TestOptions;
class MessageConsumer
{
public:
MessageConsumer(const TestOptions& perfTestParams,
- boost::shared_ptr<MockPersistableQueue> queue);
+ boost::shared_ptr<SimplePersistableQueue> queue);
virtual ~MessageConsumer();
void* runConsumers();
static void* startConsumers(void* ptr);
private:
const TestOptions& m_perfTestParams;
- boost::shared_ptr<MockPersistableQueue> m_queue;
+ boost::shared_ptr<SimplePersistableQueue> m_queue;
};
}}} // namespace tests::storePerftools::asyncPerf