beef up the cmyk tests

This commit is contained in:
John Cupitt 2019-01-17 09:06:22 +00:00
parent 1824c64c06
commit f51a93515e

View File

@ -170,6 +170,11 @@ class TestColour:
im = test.colourspace("cmyk").colourspace("srgb")
before = test(10, 10)
after = im(10, 10)
assert_almost_equal_objects(before, after, threshold=10)
if __name__ == '__main__':
pytest.main()