Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=249899523
  • Loading branch information
tohaowu committed May 24, 2019
1 parent 85055ca commit ed28982
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion perfkitbenchmarker/linux_benchmarks/fio_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
flags.DEFINE_integer('fio_runtime', 600,
'The number of seconds to run each fio job for.',
lower_bound=1)
flags.DEFINE_list('fio_parameters', ['randrepeat=0',],
flags.DEFINE_list('fio_parameters', ['randrepeat=0'],
'Parameters to apply to all PKB generated fio jobs. Each '
'member of the list should be of the form "param=value".')
flags.DEFINE_boolean('fio_lat_log', False,
Expand Down
4 changes: 2 additions & 2 deletions tests/linux_benchmarks/fio_benchmark_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def testBasicGeneration(self):
self.filename,
['sequential_read'],
[1, 2], [1],
None, None, 600, ['randrepeat=0',]),
None, None, 600, ['randrepeat=0']),
expected_jobfile)

def testMultipleScenarios(self):
Expand Down Expand Up @@ -108,7 +108,7 @@ def testMultipleScenarios(self):
self.filename,
['sequential_read', 'sequential_write'],
[1], [1],
None, None, 600, ['randrepeat=0',]),
None, None, 600, ['randrepeat=0']),
expected_jobfile)

def testCustomBlocksize(self):
Expand Down

0 comments on commit ed28982

Please sign in to comment.