Skip to content

Commit

Permalink
Merge pull request #82 from launchableinc/gtest-revise
Browse files Browse the repository at this point in the history
Quick fix for #79
  • Loading branch information
ninjinkun authored Jan 7, 2021
2 parents 83e992f + a2d8419 commit 698e602
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions launchable/test_runners/googletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@


def make_test_path(cls, case) -> TestPath:
return [{'type': 'class', 'name': cls}, {'type': 'case', 'name': case}]
return [{'type': 'class', 'name': cls}, {'type': 'testcase', 'name': case}]


@launchable.subset
def subset(client):
# Read targets from stdin, which generally looks like //foo/bar:zot
cls = ''
for label in map(str.rstrip, sys.stdin):
# handle Google Test's --gtest_list_tests output
Expand Down

0 comments on commit 698e602

Please sign in to comment.