Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
RyoYang committed Aug 14, 2024
1 parent 5927e0f commit 48a8930
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions tests/runner/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,11 +428,17 @@ def test_generate_metric_name(self):
)

def test_run_proc_timeout(self):
"""Test run_proc_timeout."""
"""Test run_proc_ timeout."""
self.runner._sb_benchmarks = {
'benchmark1': {'timeout': 120},
'benchmark2': {'timeout': None},
'benchmark3': {'timeout': 30},
'benchmark1': {
'timeout': 120
},
'benchmark2': {
'timeout': None
},
'benchmark3': {
'timeout': 30
},
}

test_cases = [
Expand Down

0 comments on commit 48a8930

Please sign in to comment.