summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-01-29 11:38:14 +0100
committerFlorian Bruhin <me@the-compiler.org>2022-01-29 11:38:14 +0100
commit2dc11c128a67b25029827cb412a37aefb67b52e5 (patch)
tree231d4dabc95d040672f9bbfb45b53bf03b812d8c
parent7b92d9b2074c5c664c8f6b6bb4bb55c18a17f47b (diff)
downloadqutebrowser-2dc11c128a67b25029827cb412a37aefb67b52e5.tar.gz
qutebrowser-2dc11c128a67b25029827cb412a37aefb67b52e5.zip
Update docs/changelog
-rw-r--r--doc/changelog.asciidoc2
-rw-r--r--tests/unit/completion/test_models.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc
index b8870af02..b07b64fa6 100644
--- a/doc/changelog.asciidoc
+++ b/doc/changelog.asciidoc
@@ -75,6 +75,8 @@ Fixed
- Due to changes in Debian, an old workaround (for broken QtWebEngine patching
on Debian) caused the inferior qutebrowser error page to be displayed, when
Chromium's would have worked fine. The workaround was now dropped.
+- Crash when using `<Ctrl-D>` (`:completion-item-del`) in the `:tab-focus`
+ list, rather than `:tab-select`.
[[v2.4.1]]
v2.4.1 (unreleased)
diff --git a/tests/unit/completion/test_models.py b/tests/unit/completion/test_models.py
index b94c19a06..2c00acf68 100644
--- a/tests/unit/completion/test_models.py
+++ b/tests/unit/completion/test_models.py
@@ -885,7 +885,7 @@ def test_tab_focus_completion_delete(qtmodeltester, fake_web_tab, win_registry,
parent = model.index(0, 0)
idx = model.index(1, 0, parent)
- # # sanity checks
+ # sanity checks
assert model.data(parent) == "Tabs"
assert model.data(idx) == '2'