Skip to content

Commit

Permalink
Fix flag parsing in tests (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha authored Mar 22, 2018
1 parent e1c1d54 commit 85c0a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def test(type, *args):
if type == 'unit':
die(call(libbuild.GOC + ' test -v ./pkg/...'))
elif type == 'e2e':
die(call('ginkgo -r --v --progress --trace -- ' + " ".join(args)))
die(call('ginkgo -r --v --progress --trace test -- ' + " ".join(args)))
else:
print '{test unit|e2e}'

Expand Down

0 comments on commit 85c0a2a

Please sign in to comment.