From 7288e0aa63da62fb464e30d167ede6229a212676 Mon Sep 17 00:00:00 2001 From: Vighnesh Date: Mon, 4 Dec 2023 11:28:39 -0800 Subject: [PATCH] revert uncomment --- tests/RequireByString.test.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/RequireByString.test.cpp b/tests/RequireByString.test.cpp index ad35b491..602b0fd1 100644 --- a/tests/RequireByString.test.cpp +++ b/tests/RequireByString.test.cpp @@ -74,6 +74,10 @@ public: luauDirRel += "/.."; std::optional parentPath = getParentPath(luauDirAbs); + if (parentPath) + { + printf("%s\n", (*parentPath).c_str()); + } REQUIRE_MESSAGE(parentPath, "Error getting Luau path"); luauDirAbs = *parentPath; } @@ -209,7 +213,6 @@ TEST_CASE("PathNormalization") } } -#if 0 TEST_CASE_FIXTURE(ReplWithPathFixture, "RequireSimpleRelativePath") { @@ -390,6 +393,4 @@ TEST_CASE_FIXTURE(ReplWithPathFixture, "RequirePathWithParentAlias") assertOutputContainsAll({"true", "result from other_dependency"}); } -#endif - TEST_SUITE_END();