summaryrefslogtreecommitdiff
path: root/numpy/core/tests/test_einsum.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core/tests/test_einsum.py')
-rw-r--r--numpy/core/tests/test_einsum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_einsum.py b/numpy/core/tests/test_einsum.py
index 1f863a7db..77fb75f10 100644
--- a/numpy/core/tests/test_einsum.py
+++ b/numpy/core/tests/test_einsum.py
@@ -581,7 +581,7 @@ class TestEinSum(TestCase):
def test_einsum_fixed_collapsingbug(self):
# Issue #5147.
- # The bug only occured when output argument of einssum was used.
+ # The bug only occurred when output argument of einssum was used.
x = np.random.normal(0, 1, (5, 5, 5, 5))
y1 = np.zeros((5, 5))
np.einsum('aabb->ab', x, out=y1)