summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/storage_interface_impl_test.cpp
diff options
context:
space:
mode:
authorGeert Bosch <geert@mongodb.com>2017-07-08 00:24:03 -0400
committerGeert Bosch <geert@mongodb.com>2017-07-18 11:22:25 -0400
commit8281fff6b58911c84b0ba53a4a557ebf4dced10b (patch)
tree7a505e2e77e6ee343e4a9f07e49d1917c169c754 /src/mongo/db/repl/storage_interface_impl_test.cpp
parent32da960b3d4f80e4005bfcc21dd56067353d64fb (diff)
downloadmongo-8281fff6b58911c84b0ba53a4a557ebf4dced10b.tar.gz
SERVER-30106 Allow syncTail replication to write to drop-pending collections
Reinstated after revert in a1c67941bf08c69cab04eba20bc9ce9a763e1c7f
Diffstat (limited to 'src/mongo/db/repl/storage_interface_impl_test.cpp')
-rw-r--r--src/mongo/db/repl/storage_interface_impl_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/repl/storage_interface_impl_test.cpp b/src/mongo/db/repl/storage_interface_impl_test.cpp
index 70e801e2fe3..825402ef879 100644
--- a/src/mongo/db/repl/storage_interface_impl_test.cpp
+++ b/src/mongo/db/repl/storage_interface_impl_test.cpp
@@ -1844,7 +1844,7 @@ TEST_F(StorageInterfaceImplTest,
// Checks that we can update collections with namespaces not considered "legal client system"
// namespaces.
NamespaceString nss("local.system.rollback.docs");
- ASSERT_FALSE(legalClientSystemNS(nss.ns()));
+ ASSERT_FALSE(nss.isLegalClientSystemNS());
auto opCtx = getOperationContext();
StorageInterfaceImpl storage;
@@ -2088,7 +2088,7 @@ TEST_F(StorageInterfaceImplTest, DeleteByFilterRemovesDocumentsInIllegalClientSy
// Checks that we can remove documents from collections with namespaces not considered "legal
// client system" namespaces.
NamespaceString nss("local.system.rollback.docs");
- ASSERT_FALSE(legalClientSystemNS(nss.ns()));
+ ASSERT_FALSE(nss.isLegalClientSystemNS());
auto opCtx = getOperationContext();
StorageInterfaceImpl storage;