From 1ffafefc1fd68f3bc9a8cf6f0fb49ffbe5bf12ef Mon Sep 17 00:00:00 2001 From: Andres Date: Mon, 18 Mar 2024 17:48:37 -0300 Subject: [PATCH] fix test --- testing/python/fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/python/fixtures.py b/testing/python/fixtures.py index d378ebef1..306b74725 100644 --- a/testing/python/fixtures.py +++ b/testing/python/fixtures.py @@ -1803,7 +1803,7 @@ class TestFixtureManagerParseFactories: def test_hello(self, item, hello, fm): print(item) clousurelist, _ = fm.getfixtureclosure(item, ("hello",), {}) - assert clousurelist[0] == ["hello", "param", "request"] + assert clousurelist == ["hello", "param", "request"] """ ) reprec = pytester.inline_run("-s")