"backends/client/src/v2/client.rs" did not exist on "12590fdccebb34f39fb85b7dae29b80fade2b6b0"
Commit d1eae113 authored by Marvin Teichmann's avatar Marvin Teichmann
Browse files

Fix wrong type test

parent 99805385
......@@ -27,7 +27,7 @@ def test_wrong_dims():
def test_wrong_type():
np_matrix = np.random.randn(3, 3, 3).astype(np.float64)
np_matrix = np.random.randn(3, 3).astype(np.float64)
# c_matrix requies type np.float32
with pytest.raises(ValueError):
# Check whether a Value Error is raised
......
Markdown is supported
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