diff options
author | 2025-03-29 20:10:49 +0000 | |
---|---|---|
committer | 2025-03-29 20:10:49 +0000 | |
commit | 9806725c7f3e4c2fe87a0a429ec13c6c37b4df1f (patch) | |
tree | 63400f90c066e3ac5a045d58670f16a763ea872d /tests/bot/test_constants.py | |
parent | Reminders: Simplify helper function to get button embed (diff) | |
parent | Bump aiohttp from 3.11.12 to 3.11.13 (#3280) (diff) |
Merge branch 'main' into feat/reminder-add-notify
Diffstat (limited to 'tests/bot/test_constants.py')
-rw-r--r-- | tests/bot/test_constants.py | 4 |
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" |