From 3afa081d1202206658f43babe30f3f62a9b4885e Mon Sep 17 00:00:00 2001 From: ramdoys Date: Thu, 20 Feb 2025 23:13:33 -0500 Subject: [PATCH] fix: vector_library and debug back to luau --- tests/Conformance.test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Conformance.test.cpp b/tests/Conformance.test.cpp index 40471300..f5da6f15 100644 --- a/tests/Conformance.test.cpp +++ b/tests/Conformance.test.cpp @@ -915,7 +915,7 @@ TEST_CASE("VectorLibrary") copts.optimizationLevel = 2; } - runConformance("vector_library.lua", [](lua_State* L) {}, nullptr, nullptr, &copts); + runConformance("vector_library.luau", [](lua_State* L) {}, nullptr, nullptr, &copts); } static void populateRTTI(lua_State* L, Luau::TypeId type) @@ -1023,7 +1023,7 @@ TEST_CASE("DateTime") TEST_CASE("Debug") { - runConformance("debug.lua"); + runConformance("debug.luau"); } TEST_CASE("Debugger")