diff options
author | Maxim Devaev <[email protected]> | 2022-03-26 02:25:17 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-03-26 02:25:17 +0300 |
commit | 6922f70dcddc610cf6bd9cfa174691e6b8524be4 (patch) | |
tree | 559f4dc84b27f481a6da9838322b603252497cc2 /testenv/tests | |
parent | 3c609e6fe094d408e2db4ab77829db0a4e297413 (diff) |
test fix
Diffstat (limited to 'testenv/tests')
-rw-r--r-- | testenv/tests/test_logging.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testenv/tests/test_logging.py b/testenv/tests/test_logging.py index 941b10fa..98a4049d 100644 --- a/testenv/tests/test_logging.py +++ b/testenv/tests/test_logging.py @@ -29,7 +29,7 @@ from kvmd.logging import get_logger @pytest.mark.parametrize("depth, name", [ (0, "tests.test_logging"), (1, "_pytest.python"), - (2, "pluggy.callers"), + (2, "pluggy._callers"), ]) def test_ok__get_logger(depth: int, name: str) -> None: assert get_logger(depth).name == name |