diff options
author | Benety Goh <benety@mongodb.com> | 2021-09-27 19:08:32 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-09-27 23:35:27 +0000 |
commit | 6b3acc72af58963a772213cc882e34b6db5bf144 (patch) | |
tree | 1c37708f6b81afac87a0f4605261f304695cfdd5 /src/mongo/db/update | |
parent | 8f7c3dd749c5f2a6c410e19e78fad96fb0bf03cb (diff) | |
download | mongo-6b3acc72af58963a772213cc882e34b6db5bf144.tar.gz |
SERVER-59618 add LockerNoopClientObserver and register this ClientObserver in unit tests with Service Context
Diffstat (limited to 'src/mongo/db/update')
-rw-r--r-- | src/mongo/db/update/update_node_test_fixture.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/update/update_node_test_fixture.h b/src/mongo/db/update/update_node_test_fixture.h index b9c27ed8bc0..22065cc7088 100644 --- a/src/mongo/db/update/update_node_test_fixture.h +++ b/src/mongo/db/update/update_node_test_fixture.h @@ -29,8 +29,8 @@ #pragma once +#include "mongo/db/concurrency/locker_noop_service_context_test_fixture.h" #include "mongo/db/service_context.h" -#include "mongo/db/service_context_test_fixture.h" #include "mongo/db/update/update_node.h" #include "mongo/db/update/v1_log_builder.h" #include "mongo/db/update/v2_log_builder.h" @@ -38,7 +38,7 @@ namespace mongo { -class UpdateNodeTest : public ServiceContextTest { +class UpdateNodeTest : public LockerNoopServiceContextTest { public: ~UpdateNodeTest() override = default; |