diff --git a/tests/Autocomplete.test.cpp b/tests/Autocomplete.test.cpp index 3d00b0b07..a6d7dc389 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";