summaryrefslogtreecommitdiffstats
path: root/googletest
diff options
context:
space:
mode:
authorIkko Eltociear Ashimine <eltociear@gmail.com>2023-06-22 16:20:10 (GMT)
committerGitHub <noreply@github.com>2023-06-22 16:20:10 (GMT)
commit1361c77c4d0027f52a7a8e205b79d572909b5587 (patch)
treef15402975b89859a5ca796a3c43c2d478470853e /googletest
parentec4fed93217bc2830959bb8e86798c1d86956949 (diff)
downloadgoogletest-1361c77c4d0027f52a7a8e205b79d572909b5587.zip
googletest-1361c77c4d0027f52a7a8e205b79d572909b5587.tar.gz
googletest-1361c77c4d0027f52a7a8e205b79d572909b5587.tar.bz2
Fix typo in googletest-catch-exceptions-test.pyrefs/pull/4300/head
FITLER_OUT_SEH_TESTS_FLAG -> FILTER_OUT_SEH_TESTS_FLAG
Diffstat (limited to 'googletest')
-rwxr-xr-xgoogletest/test/googletest-catch-exceptions-test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/test/googletest-catch-exceptions-test.py b/googletest/test/googletest-catch-exceptions-test.py
index ee4dc9a..428b5b7 100755
--- a/googletest/test/googletest-catch-exceptions-test.py
+++ b/googletest/test/googletest-catch-exceptions-test.py
@@ -297,10 +297,10 @@ class CatchCxxExceptionsTest(gtest_test_utils.TestCase):
def testUnhandledCxxExceptionsAbortTheProgram(self):
# Filters out SEH exception tests on Windows. Unhandled SEH exceptions
# cause tests to show pop-up windows there.
- FITLER_OUT_SEH_TESTS_FLAG = FILTER_FLAG + '=-*Seh*'
+ FILTER_OUT_SEH_TESTS_FLAG = FILTER_FLAG + '=-*Seh*'
# By default, Google Test doesn't catch the exceptions.
uncaught_exceptions_ex_binary_output = gtest_test_utils.Subprocess(
- [EX_EXE_PATH, NO_CATCH_EXCEPTIONS_FLAG, FITLER_OUT_SEH_TESTS_FLAG],
+ [EX_EXE_PATH, NO_CATCH_EXCEPTIONS_FLAG, FILTER_OUT_SEH_TESTS_FLAG],
env=environ,
).output