Skip to content

Commit

Permalink
Bugfix: option -n was not using comma as a separator (space was used,…
Browse files Browse the repository at this point in the history
… which is not correct)
  • Loading branch information
PrzemekWirkus committed May 21, 2015
1 parent 1982036 commit 90c4d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mbed_greentea/mbed_greentea_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def main():
test_result = 'SKIPPED'
# Skip test not mentionned in -n option
if opts.test_by_names:
test_list = opts.test_by_names.lower().split(' ')
test_list = opts.test_by_names.lower().split(',')
if test_bin.lower() not in test_list:
continue

Expand Down

0 comments on commit 90c4d32

Please sign in to comment.