Make pixelBuffer test work (hopefully)

This commit is contained in:
Matthias Koefferlein 2023-02-18 09:49:03 +01:00
parent f234af7d3b
commit 0a15425745
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class LAYPixelBufferTests(unittest.TestCase):
self.assertGreater(len(png), 20)
self.assertLess(len(png), 200)
pb_copy = pya.PixelBuffer.from_png_data(png)
self.assertEqual(pb, pb_copy)
self.assertEqual(compare(pb, pb_copy), True)
ut_testtmp = os.getenv("TESTTMP", ".")
tmp = os.path.join(ut_testtmp, "tmp.png")