From 2afcf5e35a09e51c730c86e0d5e7c5a8d25b2190 Mon Sep 17 00:00:00 2001 From: David Hall Date: Sat, 14 Sep 2024 22:59:13 -0700 Subject: [PATCH] can use ellipsis --- tests/test_einsum.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_einsum.py b/tests/test_einsum.py index 6790fee..c059b10 100644 --- a/tests/test_einsum.py +++ b/tests/test_einsum.py @@ -250,9 +250,6 @@ def test_einsum_various_errors(): m1 = hax.ones((Height, Hidth, Depth)) m2 = hax.ones((Depth, Hidth, Height)) - with pytest.raises(ValueError, match="Can't use ellipsis"): - einsum("-> ...", m1, m2) - with pytest.raises(ValueError, match="multiple times"): einsum("-> Height Height", m1, m2)