aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2024-04-01 14:54:19 +0100
committerGravatar GitHub <[email protected]>2024-04-01 14:54:19 +0100
commit70cfda5d82f7bdc730a7b5f047bb9e2c9b18bfee (patch)
tree54aa8901fec02967a3e68049771e1cd815f86a6c /tests
parentMerge pull request #2994 from python-discord/use-tasks-over-scheduler (diff)
parentMerge branch 'main' into fix-test-warning (diff)
Merge pull request #2993 from python-discord/fix-test-warning
Fix warning in tests
Diffstat (limited to 'tests')
-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"