Merge pull request #736 from karolinavelkaja/example_test_fix_for_warning

fix warning in example_test.py
This commit is contained in:
Robert Baldyga 2021-06-22 08:59:34 +02:00 committed by GitHub
commit 6c3fc4d3c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,10 @@ from test_utils.size import Size, Unit
def setup_module(): def setup_module():
TestRun.LOGGER.warning("Entering setup method") """
Function called by python
"""
TestRun.LOGGER.info("Entering setup method")
@pytest.mark.require_disk("cache", DiskTypeSet([DiskType.optane, DiskType.nand])) @pytest.mark.require_disk("cache", DiskTypeSet([DiskType.optane, DiskType.nand]))