| OLD | NEW |
| 1 import unittest | 1 import unittest |
| 2 import uuid | 2 import uuid |
| 3 import datetime | 3 import datetime |
| 4 | 4 |
| 5 from boto.mturk.question import ( | 5 from boto.mturk.question import ( |
| 6 Question, QuestionContent, AnswerSpecification, FreeTextAnswer, | 6 Question, QuestionContent, AnswerSpecification, FreeTextAnswer, |
| 7 ) | 7 ) |
| 8 from _init_environment import SetHostMTurkConnection, config_environment | 8 from _init_environment import SetHostMTurkConnection, config_environment |
| 9 | 9 |
| 10 class MTurkCommon(unittest.TestCase): | 10 class MTurkCommon(unittest.TestCase): |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 reward=0.23, | 36 reward=0.23, |
| 37 duration=datetime.timedelta(minutes=6), | 37 duration=datetime.timedelta(minutes=6), |
| 38 approval_delay=60*60, | 38 approval_delay=60*60, |
| 39 annotation='An annotation from boto create_hit test', | 39 annotation='An annotation from boto create_hit test', |
| 40 response_groups=['Minimal', | 40 response_groups=['Minimal', |
| 41 'HITDetail', | 41 'HITDetail', |
| 42 'HITQuestion', | 42 'HITQuestion', |
| 43 'HITAssignmentSummary',], | 43 'HITAssignmentSummary',], |
| 44 ) | 44 ) |
| 45 | 45 |
| OLD | NEW |