aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bot/test_constants.py
diff options
context:
space:
mode:
authorGravatar Galen Rice <[email protected]>2024-04-15 08:34:44 -0400
committerGravatar GitHub <[email protected]>2024-04-15 08:34:44 -0400
commitc071e39685c1d54ccb4a5b322bf127c3a0e16737 (patch)
tree1d1da6fb472bac863a9f9f3bfaf8daa931ecf726 /tests/bot/test_constants.py
parentUpdate comment for clarity on skipping adding of phishing button (diff)
parentUpdate site namespace in constants (diff)
Merge branch 'main' into vivek/fix-phishing-button
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"