Skip to content

Commit

Permalink
fix: invalid newline
Browse files Browse the repository at this point in the history
Signed-off-by: rokamu623 <r.okamura.061@ms.saitama-u.ac.jp>
  • Loading branch information
rokamu623 committed Aug 29, 2023
1 parent 162c2ba commit 0a91c64
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/test/record/records_service/test_response_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,15 +769,13 @@ def test_to_worst_case_timeseries(self):
class TestResponseTimeWorstInInput:

def test_empty_case(self):
records_raw = [
]
records_raw = []
columns = [ColumnValue('start'), ColumnValue('end')]
records = create_records(records_raw, columns)

response_time = ResponseTime(records)

expect_raw = [
]
expect_raw = []
result = to_dict(response_time.to_worst_in_input_records())
assert result == expect_raw

Expand Down

0 comments on commit 0a91c64

Please sign in to comment.