We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a0444e commit b5a458eCopy full SHA for b5a458e
tests/test_image.py
@@ -115,8 +115,10 @@ def test_Image(self):
115
image.clearXmpData()
116
self.assertEqual(len(image.xmpData()), 0)
117
self.assertEqual(len(image.iccProfile()), 672)
118
+ self.check_result(image.iccProfileDefined(), bool, True)
119
image.clearIccProfile()
120
self.assertEqual(len(image.iccProfile()), 0)
121
+ self.check_result(image.iccProfileDefined(), bool, False)
122
# test other methods
123
image.readMetadata()
124
self.check_result(image.byteOrder(),
0 commit comments