Skip to content

Commit

Permalink
Reformat test_seviri_l1b_native to make it PEP8 compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
pkhalaj committed Jul 29, 2024
1 parent bb86486 commit b16a910
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions satpy/tests/reader_tests/test_seviri_l1b_native.py
Original file line number Diff line number Diff line change
Expand Up @@ -1004,12 +1004,12 @@ def test_get_dataset(self, file_handler):
def test_time(self, file_handler):
"""Test start/end nominal/observation time handling."""
assert dt.datetime(2006, 1, 1, 12, 15, 9, 304888) == file_handler.observation_start_time
assert dt.datetime(2006, 1, 1, 12, 15,) == file_handler.start_time
assert dt.datetime(2006, 1, 1, 12, 15, ) == file_handler.start_time
assert file_handler.start_time == file_handler.nominal_start_time

assert dt.datetime(2006, 1, 1, 12, 27, 9, 304888) == file_handler.observation_end_time
assert file_handler.end_time == file_handler.nominal_end_time
assert dt.datetime(2006, 1, 1, 12, 30,) == file_handler.end_time
assert dt.datetime(2006, 1, 1, 12, 30, ) == file_handler.end_time

def test_repeat_cycle_duration(self, file_handler):
"""Test repeat cycle handling for FD or ReduscedScan."""
Expand Down

0 comments on commit b16a910

Please sign in to comment.