Browse Source

python: this was a bug in my test.

Interestingly enough, on Py3.7 this passed. Not exactly sure why.
pull/9/head
Vladimír Vondruš 6 years ago
parent
commit
7aef7bd4c8
  1. 2
      src/python/magnum/test/test.py

2
src/python/magnum/test/test.py

@ -261,4 +261,4 @@ class ImageView(unittest.TestCase):
b'rgbRGB '))
self.assertIs(a.owner, data2)
self.assertEqual(sys.getrefcount(data), data_refcount)
self.assertEqual(sys.getrefcount(data2), data_refcount + 1)
self.assertEqual(sys.getrefcount(data2), data2_refcount + 1)

Loading…
Cancel
Save