summaryrefslogtreecommitdiff
path: root/src/mongo/s/config_server_test_fixture.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/config_server_test_fixture.h')
-rw-r--r--src/mongo/s/config_server_test_fixture.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/s/config_server_test_fixture.h b/src/mongo/s/config_server_test_fixture.h
index 7deabf1b323..38d348a78f0 100644
--- a/src/mongo/s/config_server_test_fixture.h
+++ b/src/mongo/s/config_server_test_fixture.h
@@ -42,7 +42,7 @@ class BSONObj;
class CatalogCache;
struct ChunkVersion;
class CollectionType;
-class DistLockManagerMock;
+class ReplSetDistLockManager;
class NamespaceString;
class Shard;
class ShardFactoryMock;
@@ -100,7 +100,7 @@ public:
MessagingPortMock* getMessagingPort() const;
- DistLockManagerMock* distLock() const;
+ ReplSetDistLockManager* distLock() const;
OperationContext* operationContext() const;
@@ -172,7 +172,7 @@ private:
executor::TaskExecutor* _executorForAddShard;
std::unique_ptr<executor::NetworkTestEnv> _networkTestEnv;
std::unique_ptr<executor::NetworkTestEnv> _addShardNetworkTestEnv;
- DistLockManagerMock* _distLockManager = nullptr;
+ ReplSetDistLockManager* _distLockManager = nullptr;
ShardingCatalogClientImpl* _catalogClient = nullptr;
ShardingCatalogManagerImpl* _catalogManager = nullptr;
};