Skip to content
Snippets Groups Projects
Commit b3d9bb57 authored by Alexandru Fikl's avatar Alexandru Fikl Committed by Andreas Klöckner
Browse files

fix comparison on numpy 1.25

parent 9399fb7a
No related branches found
No related tags found
No related merge requests found
Pipeline #440540 failed
......@@ -1311,7 +1311,8 @@ def test_container_equality(actx_factory):
dc2 = MyContainer(name="yoink", mass=ary_dof, momentum=None, enthalpy=None)
assert dc != dc2
assert isinstance(bcast_dc_of_dofs == bcast_dc_of_dofs_2, MyContainerDOFBcast)
assert isinstance(actx.np.equal(bcast_dc_of_dofs, bcast_dc_of_dofs_2),
MyContainerDOFBcast)
# }}}
......
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