summaryrefslogtreecommitdiff
path: root/tests/pyreverse/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pyreverse/conftest.py')
-rw-r--r--tests/pyreverse/conftest.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/pyreverse/conftest.py b/tests/pyreverse/conftest.py
index 02a19e613..9e1741f0a 100644
--- a/tests/pyreverse/conftest.py
+++ b/tests/pyreverse/conftest.py
@@ -1,6 +1,6 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
-# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
-# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
+# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
+# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
from __future__ import annotations
@@ -29,9 +29,10 @@ def colorized_dot_config() -> PyreverseConfig:
@pytest.fixture()
-def vcg_config() -> PyreverseConfig:
+def no_standalone_dot_config() -> PyreverseConfig:
return PyreverseConfig(
- output_format="vcg",
+ output_format="dot",
+ no_standalone=True,
)