| 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 | 8 from _init_environment import SetHostMTurkConnection |
| 9 | 9 |
| 10 class MTurkCommon(unittest.TestCase): | 10 class MTurkCommon(unittest.TestCase): |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 reward=0.23, | 35 reward=0.23, |
| 36 duration=datetime.timedelta(minutes=6), | 36 duration=datetime.timedelta(minutes=6), |
| 37 approval_delay=60*60, | 37 approval_delay=60*60, |
| 38 annotation='An annotation from boto create_hit test', | 38 annotation='An annotation from boto create_hit test', |
| 39 response_groups=['Minimal', | 39 response_groups=['Minimal', |
| 40 'HITDetail', | 40 'HITDetail', |
| 41 'HITQuestion', | 41 'HITQuestion', |
| 42 'HITAssignmentSummary',], | 42 'HITAssignmentSummary',], |
| 43 ) | 43 ) |
| 44 | 44 |
| OLD | NEW |