Skip to content

Commit

Permalink
fix(ecmwf_realtime): Test
Browse files Browse the repository at this point in the history
  • Loading branch information
devsjc committed Oct 28, 2024
1 parent 34b625d commit 3306a9b
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,17 @@ class TestCase:
tests: list[TestCase] = [
TestCase(
name="valid_filename",
filename="A2D10251200102516001",
filename=f"A2D{test_it:%m%d%H%M}102516001",
expected=True,
),
TestCase(
name="invalid_filename",
filename="GGC10251200102516002",
name="invalid_init_time",
filename="A2D09250600102516002",
expected=False,
),
TestCase(
name="invalid_prefix",
filename=f"GGC{test_it:%m%d%H%M}102516002",
expected=False,
),
TestCase(
Expand Down

0 comments on commit 3306a9b

Please sign in to comment.