diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-18 23:33:42 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-18 23:33:42 -0400 |
| commit | 2087af2315b14e82117e643c16686e9555aa9d9b (patch) | |
| tree | 8327aed1081c80dab0cbe92991c7f96292b5a7d7 /tests | |
| parent | a96d2764f036e2ea8f8625533b2f37b8291eda31 (diff) | |
| download | decky-lsfg-vk-2087af2315b14e82117e643c16686e9555aa9d9b.tar.gz decky-lsfg-vk-2087af2315b14e82117e643c16686e9555aa9d9b.zip | |
rm circular logic bug with legacy enable bool
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_configuration.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_configuration.py b/tests/test_configuration.py index f3fdcbe..1b10413 100644 --- a/tests/test_configuration.py +++ b/tests/test_configuration.py @@ -128,7 +128,6 @@ def test_config_roundtrip(): # Update config result = service.update_config( - enable=True, dll="/path/to/dll", multiplier=3, flow_scale=1.5, @@ -147,7 +146,6 @@ def test_config_roundtrip(): assert read_result["success"] is True config = read_result["config"] - assert config["enable"] is True assert config["dll"] == "/path/to/dll" assert config["multiplier"] == 3 assert config["flow_scale"] == 1.5 |
