Skip to content
Snippets Groups Projects
Commit b66e136e authored by Wilson Jallet's avatar Wilson Jallet :clapper:
Browse files

unittest/std-vector: fix for older numpy

parent b482f27f
No related branches found
No related tags found
No related merge requests found
......@@ -62,14 +62,14 @@ print("-----------------")
print("l2:")
l2_py = l2.tolist()
vector.setZero(l2_py)
pprint.pp(l2_py)
pprint.pprint(l2_py)
checkZero(l2_py)
print("-----------------")
l3_copy = copyStdVector(l3)
print("l3_std:")
vector.setZero(l3_copy)
pprint.pp(list(l3_copy))
pprint.pprint(list(l3_copy))
checkZero(l3_copy)
print("-----------------")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment