Skip to content

Commit 8e32de8

Browse files
Merge pull request #4300 from eltociear:patch-1
PiperOrigin-RevId: 543586460 Change-Id: I87ee05c4b77fb643a3381018568a4765d0a12b18
2 parents 372e81d + 1361c77 commit 8e32de8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
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)