Fix TestSupport.hpp after rebase
diff --git a/kotlin-native/runtime/src/mm/cpp/TestSupport.cpp b/kotlin-native/runtime/src/mm/cpp/TestSupport.cpp
index 09b1c6c..0c542b1 100644
--- a/kotlin-native/runtime/src/mm/cpp/TestSupport.cpp
+++ b/kotlin-native/runtime/src/mm/cpp/TestSupport.cpp
@@ -6,6 +6,7 @@
#include "gtest/gtest.h"
#include "gmock/gmock.h"
+#include "GC.hpp"
#include "GlobalData.hpp"
#include "GlobalsRegistry.hpp"
#include "TestSupport.hpp"
@@ -48,7 +49,7 @@
auto threads = mm::ThreadRegistry::Instance().Iter();
EXPECT_THAT(collect<ObjHeader**>(globals), testing::UnorderedElementsAre());
- EXPECT_THAT(collect<mm::ObjectFactory<mm::GC>::NodeRef>(objects), testing::UnorderedElementsAre());
+ EXPECT_THAT(collect<mm::ObjectFactory<gc::GC>::NodeRef>(objects), testing::UnorderedElementsAre());
EXPECT_THAT(collect<ObjHeader*>(stableRefs), testing::UnorderedElementsAre());
EXPECT_THAT(collect(threads), testing::UnorderedElementsAre());
}