Skip to content

Commit

Permalink
formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Oct 4, 2024
1 parent f016436 commit 5e33fcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/tools/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def test_save_null_video():
except ValueError as e:
assert str(e) == "Frames must be a list of NumPy arrays"


def test_save_empty_list():
frames = []
try:
Expand All @@ -66,4 +67,3 @@ def test_save_invalid_frame():
save_video(frames, "tmp.mp4")
except ValueError as e:
assert str(e) == "Frame is not a valid NumPy array with shape (H, W, C)"

0 comments on commit 5e33fcc

Please sign in to comment.