Skip to content

Commit

Permalink
CreateQualificationType request was using TestDuration as a param rat…
Browse files Browse the repository at this point in the history
…her than TestDurationInSeconds. Fixes github issue 142.
  • Loading branch information
garnaat committed Mar 25, 2011
1 parent 2950917 commit 5493dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boto/mturk/connection.py
Expand Up @@ -579,7 +579,7 @@ def create_qualification_type(self,
params['Test'] = test.get_as_xml()

if test_duration is not None:
params['TestDuration'] = test_duration
params['TestDurationInSeconds'] = test_duration

if answer_key is not None:
if isinstance(answer_key, basestring):
Expand Down

0 comments on commit 5493dd1

Please sign in to comment.