From 0106dfaffae1c50db62d77a870fbce055a940486 Mon Sep 17 00:00:00 2001 From: Vyacheslav Egorov Date: Fri, 20 Sep 2024 18:58:46 +0300 Subject: [PATCH] Maybe reduce the base --- tests/Autocomplete.test.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/Autocomplete.test.cpp b/tests/Autocomplete.test.cpp index 3d00b0b0..a6d7dc38 100644 --- a/tests/Autocomplete.test.cpp +++ b/tests/Autocomplete.test.cpp @@ -3823,11 +3823,7 @@ TEST_CASE_FIXTURE(ACFixture, "autocomplete_subtyping_recursion_limit") ScopedFastFlag luauAutocompleteNewSolverLimit{FFlag::LuauAutocompleteNewSolverLimit, true}; ScopedFastInt luauTypeInferRecursionLimit{FInt::LuauTypeInferRecursionLimit, 10}; -#if defined(LUAU_ENABLE_ASAN) - const int parts = 30; -#else - const int parts = 100; -#endif + const int parts = 80; std::string source; source += "function f()\n";