Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(709)

Side by Side Diff: third_party/gsutil/third_party/boto/tests/mturk/common.py

Issue 1380943003: Roll version of gsutil to 4.15. (Closed) Base URL: https://github.com/catapult-project/catapult.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698