summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-10-09 08:24:56 +0200
committerFlorian Bruhin <git@the-compiler.org>2017-10-09 08:24:56 +0200
commit9d292128d2bf0b01873d1bff3adc888d18b20bd8 (patch)
treeefa35c2385c667abbef9bb9848c99692aa4e81bd
parentf3eb5dbb667090fbdc3bc52f9e0d2180177dea14 (diff)
downloadqutebrowser-9d292128d2bf0b01873d1bff3adc888d18b20bd8.tar.gz
qutebrowser-9d292128d2bf0b01873d1bff3adc888d18b20bd8.zip
Remove test_upgrade_version
This is the last v0.11.x release
-rw-r--r--tests/unit/config/test_config.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/unit/config/test_config.py b/tests/unit/config/test_config.py
index be526dac3..5bfc7dc95 100644
--- a/tests/unit/config/test_config.py
+++ b/tests/unit/config/test_config.py
@@ -397,19 +397,6 @@ class TestDefaultConfig:
for cmd in conf.get_bindings_for(sectname).values():
runner.parse(cmd)
- def test_upgrade_version(self):
- """Fail when the qutebrowser version changed.
-
- The aim of this is to remind us to add a new file to old_configs.
-
- If the config file of the current release didn't change compared to the
- last one in old_configs, just increment the version here.
-
- If it did change, place a new qutebrowser-vx.y.z.conf in old_configs
- and then increment the version.
- """
- assert qutebrowser.__version__ == '0.11.0'
-
@pytest.mark.parametrize('filename',
os.listdir(os.path.join(os.path.dirname(__file__), 'old_configs')),
ids=os.path.basename)