Merge pull request #3309 from tareqalayan/issue-3308

issue #3308: fix example in documentation
This commit is contained in:
Ronny Pfannschmidt 2018-03-14 15:52:55 +01:00 committed by GitHub
commit 1b535387bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
Fix a python example when calling a fixture in doc/en/usage.rst

View File

@ -337,7 +337,7 @@ to all testcases you can use ``LogXML.add_global_properties``
my_junit.add_global_property('ARCH', 'PPC')
my_junit.add_global_property('STORAGE_TYPE', 'CEPH')
@pytest.mark.usefixtures(log_global_env_facts)
@pytest.mark.usefixtures(log_global_env_facts.__name__)
def start_and_prepare_env():
pass