Skip to content

Commit 52976b0

Browse files
committed
[ROOT][test] Canonical name includes UL suffix for literal
1 parent 7b7ec00 commit 52976b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bindings/pyroot/pythonizations/test/rdataframe_asnumpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def test_read_array(self):
120120
npy = df.AsNumpy()
121121
self.assertEqual(npy["x"].size, 5)
122122
self.assertEqual(list(npy["x"][0]), [0, 0, 0])
123-
self.assertIn("array<unsigned int,3>", str(type(npy["x"][0])))
123+
self.assertIn("array<unsigned int, 3UL>", str(type(npy["x"][0])))
124124

125125
def test_read_th1f(self):
126126
"""

0 commit comments

Comments
 (0)