This commit is contained in:
Andres 2024-03-18 17:48:37 -03:00
parent 5646d425a9
commit 1ffafefc1f
1 changed files with 1 additions and 1 deletions

View File

@ -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")