Rename ENVVAR in line with previous one (`OSU_TESTS_NO_TIMEOUT`)

This commit is contained in:
Dean Herbert 2022-07-01 16:20:34 +09:00
parent b597843579
commit c4f1660841
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ public FlakyTestAttribute()
}
public FlakyTestAttribute(int tryCount)
: base(Environment.GetEnvironmentVariable("FAIL_FLAKY_TESTS") == "1" ? 0 : tryCount)
: base(Environment.GetEnvironmentVariable("OSU_TESTS_FAIL_FLAKY") == "1" ? 0 : tryCount)
{
}
}