Skip to content

Commit 6d589b9

Browse files
i-feofilaktovsseliverstov
authored andcommitted
Fixed usage of function instead of its result as a dict key (fixes #79 via #80)
1 parent a9d9545 commit 6d589b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

allure-pytest/src/listener.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def pytest_fixture_setup(self, fixturedef, request):
9494

9595
self.allure_logger.update_group(container_uuid, start=now())
9696

97-
before_fixture_uuid = uuid4
97+
before_fixture_uuid = uuid4()
9898
before_fixture = TestBeforeResult(name=fixture_name, start=now())
9999
self.allure_logger.start_before_fixture(container_uuid, before_fixture_uuid, before_fixture)
100100

0 commit comments

Comments
 (0)