aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bot/test_constants.py
diff options
context:
space:
mode:
authorGravatar ~hedy <[email protected]>2024-04-02 12:53:34 +0800
committerGravatar GitHub <[email protected]>2024-04-02 12:53:34 +0800
commit2d9b3a220c02daec03b09e82980c82daffe0c3a1 (patch)
treeda3787c1e1f56561b6c02428eeba75fe589bd251 /tests/bot/test_constants.py
parentReference the /tag slash-command instead in tags listing (diff)
parentMerge pull request #2995 from python-discord/wookie184-show-warnings-in-actio... (diff)
Merge branch 'main' into fix/tags-list-footer
Diffstat (limited to 'tests/bot/test_constants.py')
-rw-r--r--tests/bot/test_constants.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bot/test_constants.py b/tests/bot/test_constants.py
index 87933d59a..916e1d5bb 100644
--- a/tests/bot/test_constants.py
+++ b/tests/bot/test_constants.py
@@ -10,7 +10,7 @@ current_path = Path(__file__)
env_file_path = current_path.parent / ".testenv"
-class TestEnvConfig(
+class _TestEnvConfig(
EnvConfig,
env_file=env_file_path,
):
@@ -21,7 +21,7 @@ class NestedModel(BaseModel):
server_name: str
-class _TestConfig(TestEnvConfig, env_prefix="unittests_"):
+class _TestConfig(_TestEnvConfig, env_prefix="unittests_"):
goat: str
execution_env: str = "local"