Skip to content
Snippets Groups Projects
Commit 0c7d28e0 authored by Markus Holzer's avatar Markus Holzer
Browse files

Fixed small test case

parent 5d7ab621
No related merge requests found
Pipeline #32583 passed with stage
in 38 minutes and 56 seconds
......@@ -145,8 +145,8 @@ def test_boundary_utility_functions():
neumann = NeumannByCopy(name="Neumann")
assert neumann == NeumannByCopy(name="Neumann")
assert not neumann == NeumannByCopy(name="Neumann")
assert not neumann == NeumannByCopy(name="test")
stream = StreamInConstant(constant=1.0, name="stream")
assert stream == StreamInConstant(constant=1.0, name="stream")
assert not stream == StreamInConstant(constant=1.0, name="stream")
assert not stream == StreamInConstant(constant=1.0, name="test")
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment