diff --git a/tests/SharedCodeAllocator.test.cpp b/tests/SharedCodeAllocator.test.cpp index bba8daada..0f30036da 100644 --- a/tests/SharedCodeAllocator.test.cpp +++ b/tests/SharedCodeAllocator.test.cpp @@ -177,10 +177,12 @@ TEST_CASE("NativeModuleRefRefcounting") // NativeModuleRef self move assignment: { +#pragma warning(push, 0) NativeModuleRef modRef1{modRefA}; modRef1 = std::move(modRef1); REQUIRE(modRef1.get() == modRefA.get()); REQUIRE(modRefA->getRefcount() == 2); +#pragma warning(pop) } REQUIRE(modRefA->getRefcount() == 1);