Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
rb-synth committed Apr 30, 2024
1 parent 82c1566 commit be4e44b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/models/vitmatte/test_image_processing_vitmatte.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,3 +192,7 @@ def test_padding(self):
image = np.random.randn(3, 249, 491)
images = image_processing.pad_image(image)
assert images.shape == (3, 256, 512)

image = np.random.randn(3, 249, 512)
images = image_processing.pad_image(image)
assert images.shape == (3, 256, 512)

0 comments on commit be4e44b

Please sign in to comment.