diff options
author | Andy Schwerin <schwerin@mongodb.com> | 2015-05-12 10:01:26 -0400 |
---|---|---|
committer | Andy Schwerin <schwerin@mongodb.com> | 2015-05-12 10:01:26 -0400 |
commit | 3681d3dbca85b25735fa0ec676828d1da191732d (patch) | |
tree | 5106b1e29186e92f31736278f79d39b4e1947b93 /src/mongo/dbtests/querytests.cpp | |
parent | 9aac625685811873ffbc2d3e8d09531eff1ce10e (diff) | |
download | mongo-3681d3dbca85b25735fa0ec676828d1da191732d.tar.gz |
Revert "SERVER-13874 Make mongo::Milliseconds et al. aliases for equivalent stdx::chrono types."
This reverts commit 9aac625685811873ffbc2d3e8d09531eff1ce10e.
Committed in error.
Diffstat (limited to 'src/mongo/dbtests/querytests.cpp')
-rw-r--r-- | src/mongo/dbtests/querytests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/dbtests/querytests.cpp b/src/mongo/dbtests/querytests.cpp index b0df01de4ed..5aac0a989e5 100644 --- a/src/mongo/dbtests/querytests.cpp +++ b/src/mongo/dbtests/querytests.cpp @@ -675,7 +675,7 @@ namespace QueryTests { ClientCursorPin clientCursor( ctx.db()->getCollection( ns )->getCursorManager(), cursorId ); - ASSERT_EQUALS( three.asULL(), clientCursor.c()->getSlaveReadTill().asULL() ); + ASSERT_EQUALS( three.millis, clientCursor.c()->getSlaveReadTill().asULL() ); } }; |