summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/reporter_test.cpp
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2015-05-07 11:35:33 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2015-05-10 22:03:40 -0400
commite06508fe119710ca06ee06504e0a33163af0708f (patch)
tree0712d33d484bfeafeb779de7eaa7b2f8b22aaaea /src/mongo/db/repl/reporter_test.cpp
parent69bfdbc80fd2e66a6eb8cd1fbd4503537c97d7fc (diff)
downloadmongo-e06508fe119710ca06ee06504e0a33163af0708f.tar.gz
SERVER-18353 Move the remote command executor to a separate library
Diffstat (limited to 'src/mongo/db/repl/reporter_test.cpp')
-rw-r--r--src/mongo/db/repl/reporter_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/repl/reporter_test.cpp b/src/mongo/db/repl/reporter_test.cpp
index d0a9bc51638..c060f714339 100644
--- a/src/mongo/db/repl/reporter_test.cpp
+++ b/src/mongo/db/repl/reporter_test.cpp
@@ -100,7 +100,7 @@ namespace {
NetworkInterfaceMock* net = getNet();
ASSERT_TRUE(net->hasReadyRequests());
ReplicationExecutor::Milliseconds millis(0);
- ReplicationExecutor::RemoteCommandResponse response(obj, millis);
+ RemoteCommandResponse response(obj, millis);
ReplicationExecutor::ResponseStatus responseStatus(response);
net->scheduleResponse(net->getNextReadyRequest(), net->now(), responseStatus);
}