From ae12b1d2dccd0c7eacd471b7e44928c8379b904e Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Fri, 15 Apr 2022 18:23:02 +1000 Subject: [PATCH] Removed unused function --- Tests/test_imagemorph.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Tests/test_imagemorph.py b/Tests/test_imagemorph.py index 368c2bba140..8f6ce7f8f2b 100644 --- a/Tests/test_imagemorph.py +++ b/Tests/test_imagemorph.py @@ -48,10 +48,6 @@ def img_string_normalize(im): return img_to_string(string_to_img(im)) -def assert_img_equal(A, B): - assert img_to_string(A) == img_to_string(B) - - def assert_img_equal_img_string(A, Bstring): assert img_to_string(A) == img_string_normalize(Bstring)