Skip to content

Commit 1361c77

Browse files
authored
Fix typo in googletest-catch-exceptions-test.py
FITLER_OUT_SEH_TESTS_FLAG -> FILTER_OUT_SEH_TESTS_FLAG
1 parent ec4fed9 commit 1361c77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

googletest/test/googletest-catch-exceptions-test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,10 @@ def testCatchesNonStdCxxExceptions(self):
297297
def testUnhandledCxxExceptionsAbortTheProgram(self):
298298
# Filters out SEH exception tests on Windows. Unhandled SEH exceptions
299299
# cause tests to show pop-up windows there.
300-
FITLER_OUT_SEH_TESTS_FLAG = FILTER_FLAG + '=-*Seh*'
300+
FILTER_OUT_SEH_TESTS_FLAG = FILTER_FLAG + '=-*Seh*'
301301
# By default, Google Test doesn't catch the exceptions.
302302
uncaught_exceptions_ex_binary_output = gtest_test_utils.Subprocess(
303-
[EX_EXE_PATH, NO_CATCH_EXCEPTIONS_FLAG, FITLER_OUT_SEH_TESTS_FLAG],
303+
[EX_EXE_PATH, NO_CATCH_EXCEPTIONS_FLAG, FILTER_OUT_SEH_TESTS_FLAG],
304304
env=environ,
305305
).output
306306

0 commit comments

Comments
 (0)