From 5d21b78119708bc50e28344ec7073d261f2d72ce Mon Sep 17 00:00:00 2001 From: Ricardo Vieira Date: Wed, 18 Sep 2024 13:22:28 +0200 Subject: [PATCH] Fix test error message --- tests/compile/test_builders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/compile/test_builders.py b/tests/compile/test_builders.py index d71094bfed..d99b13edfc 100644 --- a/tests/compile/test_builders.py +++ b/tests/compile/test_builders.py @@ -686,7 +686,7 @@ def test_repeated_inputs(self): with pytest.raises( ValueError, - match="There following variables were provided more than once as inputs to the " + match="The following variables were provided more than once as inputs to the " "OpFromGraph", ): OpFromGraph([x, x, y], [x + y])