Skip to content

Commit 0250f31

Browse files
committed
removed WEBSERVER_CLUSTERS
1 parent 10a3e9d commit 0250f31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

services/web/server/tests/unit/isolated/test_application_settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def test_settings_to_client_statics(app_settings: ApplicationSettings):
6161

6262
# special alias
6363
assert statics["stackName"] == "master-simcore"
64-
assert statics["pluginsDisabled"] == ["WEBSERVER_CLUSTERS"]
64+
assert statics["pluginsDisabled"] == []
6565

6666

6767
def test_settings_to_client_statics_plugins(
@@ -100,13 +100,13 @@ def test_settings_to_client_statics_plugins(
100100
assert statics["vcsReleaseTag"]
101101
assert TypeAdapter(HttpUrl).validate_python(statics["vcsReleaseUrl"])
102102

103-
assert set(statics["pluginsDisabled"]) == (disable_plugins | {"WEBSERVER_CLUSTERS"})
103+
assert set(statics["pluginsDisabled"]) == (disable_plugins)
104104

105105

106106
@pytest.mark.parametrize("is_dev_feature_enabled", [True, False])
107107
@pytest.mark.parametrize(
108108
"plugin_name",
109-
["WEBSERVER_META_MODELING", "WEBSERVER_VERSION_CONTROL"]
109+
["WEBSERVER_META_MODELING", "WEBSERVER_VERSION_CONTROL"],
110110
# NOTE: this is the list in _enable_only_if_dev_features_allowed
111111
)
112112
def test_disabled_plugins_settings_to_client_statics(

0 commit comments

Comments
 (0)