summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2023-08-15 16:51:08 +0200
committerFlorian Bruhin <me@the-compiler.org>2023-08-15 16:51:08 +0200
commit66254e7e6ec5881ffcc4131e66f72620966bc611 (patch)
treeb552f4a3a3fa7ee09cc307d42132d38a3b0666cd
parentf819a189d40cea7d59573835426f580fa93ebfff (diff)
downloadqutebrowser-66254e7e6ec5881ffcc4131e66f72620966bc611.tar.gz
qutebrowser-66254e7e6ec5881ffcc4131e66f72620966bc611.zip
Fix bookmark tests, part 2
-rw-r--r--tests/end2end/features/urlmarks.feature14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/end2end/features/urlmarks.feature b/tests/end2end/features/urlmarks.feature
index ab8264b3c..05d07ae98 100644
--- a/tests/end2end/features/urlmarks.feature
+++ b/tests/end2end/features/urlmarks.feature
@@ -84,7 +84,7 @@ Feature: quickmarks and bookmarks
When I open data/numbers/5.txt
And I run :bookmark-add
And I run :bookmark-del http://localhost:(port)/data/numbers/5.txt
- Then the bookmark file should not contain "http://localhost:*/data/numbers/5.txt "
+ Then the bookmark file should not contain "http://localhost:*/data/numbers/5.txt *"
Scenario: Deleting all bookmarks
When I open data/numbers/1.txt
@@ -93,15 +93,15 @@ Feature: quickmarks and bookmarks
And I run :bookmark-add
And I run :bookmark-del --all
Then the message "Bookmarks cleared." should be shown
- And the bookmark file should not contain "http://localhost:*/data/numbers/1.txt "
- And the bookmark file should not contain "http://localhost:*/data/numbers/2.txt "
+ And the bookmark file should not contain "http://localhost:*/data/numbers/1.txt *"
+ And the bookmark file should not contain "http://localhost:*/data/numbers/2.txt *"
Scenario: Deleting all bookmarks with url
When I open data/numbers/1.txt
And I run :bookmark-add
And I run :bookmark-del --all https://example.org
Then the error "Cannot specify url and --all" should be shown
- And the bookmark file should contain "http://localhost:*/data/numbers/1.txt "
+ And the bookmark file should contain "http://localhost:*/data/numbers/1.txt *"
Scenario: Deleting the current page's bookmark if it doesn't exist
When I open data/hello.txt
@@ -112,18 +112,18 @@ Feature: quickmarks and bookmarks
When I open data/numbers/6.txt
And I run :bookmark-add
And I run :bookmark-del
- Then the bookmark file should not contain "http://localhost:*/data/numbers/6.txt "
+ Then the bookmark file should not contain "http://localhost:*/data/numbers/6.txt *"
Scenario: Toggling a bookmark
When I open data/numbers/7.txt
And I run :bookmark-add
And I run :bookmark-add --toggle
- Then the bookmark file should not contain "http://localhost:*/data/numbers/7.txt "
+ Then the bookmark file should not contain "http://localhost:*/data/numbers/7.txt *"
Scenario: Loading a bookmark with --delete
When I run :bookmark-add http://localhost:(port)/data/numbers/8.txt "eight"
And I run :bookmark-load -d http://localhost:(port)/data/numbers/8.txt
- Then the bookmark file should not contain "http://localhost:*/data/numbers/8.txt "
+ Then the bookmark file should not contain "http://localhost:*/data/numbers/8.txt *"
## quickmarks