summaryrefslogtreecommitdiff
path: root/dbtests/repltests.cpp
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2009-03-17 13:48:40 -0400
committerAaron <aaron@10gen.com>2009-03-17 13:48:40 -0400
commit8ffaa3e2d9fbf731021cf3fe760d0a7cf42f8d76 (patch)
tree539cd700297513be5fcc399e83de8a5b45089959 /dbtests/repltests.cpp
parentf1b3732e1d68298da6607a52abe720484d247126 (diff)
downloadmongo-8ffaa3e2d9fbf731021cf3fe760d0a7cf42f8d76.tar.gz
Remove 'haveLogged'
Diffstat (limited to 'dbtests/repltests.cpp')
-rw-r--r--dbtests/repltests.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/dbtests/repltests.cpp b/dbtests/repltests.cpp
index 48c37584018..9f4db3d1ef2 100644
--- a/dbtests/repltests.cpp
+++ b/dbtests/repltests.cpp
@@ -161,12 +161,10 @@ namespace ReplTests {
class LogBasic : public Base {
public:
void run() {
- ASSERT( !database->haveLogged() );
ASSERT( oneOp().isEmpty() );
client()->insert( ns(), fromjson( "{\"a\":\"b\"}" ) );
- ASSERT( database->haveLogged() );
ASSERT( !oneOp().isEmpty() );
}
};