summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-08-15 20:00:51 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-08-15 20:00:51 +0200
commit433f9dc9edf3c684640a9d96864a032e78ded7da (patch)
tree9c01656e4edeeeaeebd81ecc59a7f276ceea520a
parentdc2a988f92623c401eb8d0b12260ed395a79961f (diff)
downloadqutebrowser-433f9dc9edf3c684640a9d96864a032e78ded7da.tar.gz
qutebrowser-433f9dc9edf3c684640a9d96864a032e78ded7da.zip
Remove test relying on new option in master
-rw-r--r--tests/unit/config/test_configcommands.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/unit/config/test_configcommands.py b/tests/unit/config/test_configcommands.py
index 22de04070..08c4172af 100644
--- a/tests/unit/config/test_configcommands.py
+++ b/tests/unit/config/test_configcommands.py
@@ -373,15 +373,6 @@ class TestAdd:
with pytest.raises(cmdutils.CommandError, match="Invalid value ''"):
commands.config_dict_add('aliases', 'missingkey', '')
- def test_dict_add_value_type(self, commands, config_stub):
- commands.config_dict_add(
- "content.javascript.log_message.levels",
- "example",
- "['error']",
- )
- value = config_stub.val.content.javascript.log_message.levels["example"]
- assert value == ['error']
-
class TestRemove: