summaryrefslogtreecommitdiffstats
path: root/googletest/test/gtest_help_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'googletest/test/gtest_help_test.py')
-rwxr-xr-xgoogletest/test/gtest_help_test.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/googletest/test/gtest_help_test.py b/googletest/test/gtest_help_test.py
index 85a0c33..a76f220 100755
--- a/googletest/test/gtest_help_test.py
+++ b/googletest/test/gtest_help_test.py
@@ -146,19 +146,6 @@ class GTestHelpTest(gtest_test_utils.TestCase):
else:
self.assertNotIn(DEATH_TEST_STYLE_FLAG, output)
- def TestUnknownFlagWithAbseil(self, flag):
- """Verifies correct behavior when an unknown flag is specified.
-
- The right message must be printed and the tests must
- skipped when the given flag is specified.
-
- Args:
- flag: A flag to pass to the binary or None.
- """
- exit_code, output = RunWithFlag(flag)
- self.assertEqual(1, exit_code)
- self.assertIn('ERROR: Unknown command line flag', output)
-
def TestNonHelpFlag(self, flag):
"""Verifies correct behavior when no help flag is specified.