From 6f1b65bca75cd817ebf3eae01397562f5767237d Mon Sep 17 00:00:00 2001 From: Asier Galicia Date: Tue, 28 Dec 2021 18:15:03 +0100 Subject: [PATCH] Added small clarification. --- tests/core/data/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/data/conftest.py b/tests/core/data/conftest.py index 90cbc91..d9853cd 100644 --- a/tests/core/data/conftest.py +++ b/tests/core/data/conftest.py @@ -9,7 +9,7 @@ def random_numpy_dense(shape): """Generate a random numpy dense matrix with the given shape.""" out = np.random.random(shape) + 1j * np.random.random(shape) - return np.asarray(out) + return np.asarray(out) # This ensure the output is an ndarray. def random_node(shape):