Skip to content

Commit

Permalink
[playframework#956] Set framework id to test if command = 'autotest'
Browse files Browse the repository at this point in the history
  • Loading branch information
revbingo committed Jul 3, 2011
1 parent 4779bb8 commit 3034b3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion play
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ try:
if remaining_args.count('--%%%s' % play_env["id"]) == 1:
remaining_args.remove('--%%%s' % play_env["id"])

if play_command == 'test' or play_command == 'auto-test':
if play_command in ['test', 'auto-test', 'autotest'] :
# If framework-id is not a valid test-id, force it to 'test'
if not isTestFrameworkId( play_env["id"] ):
play_env["id"] = 'test'
Expand Down

0 comments on commit 3034b3b

Please sign in to comment.