Skip to content

Commit

Permalink
if test_case not in test_cases:
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Jan 8, 2025
1 parent 07e753c commit eaa7e5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion googletest/test/googletest-shuffle-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def GetTestCases(tests):
test_cases = []
for test in tests:
test_case = test.split('.')[0]
if not test_case in test_cases:
if test_case not in test_cases:
test_cases.append(test_case)

return test_cases
Expand Down

0 comments on commit eaa7e5a

Please sign in to comment.