tests: Remove trailing periods in feature files

Breaks after https://github.com/pytest-dev/pytest-bdd/pull/539
This commit is contained in:
Florian Bruhin 2022-07-17 11:51:21 +02:00
parent 8f3011e261
commit 418f91dfcd
2 changed files with 10 additions and 10 deletions

View File

@ -12,26 +12,26 @@ Feature: Caret mode
Scenario: :yank selection without selection
When I run :yank selection
Then the message "Nothing to yank" should be shown.
Then the message "Nothing to yank" should be shown
Scenario: :yank selection message
When I run :selection-toggle
And I run :move-to-end-of-word
And I run :yank selection
Then the message "3 chars yanked to clipboard" should be shown.
Then the message "3 chars yanked to clipboard" should be shown
Scenario: :yank selection message with one char
When I run :selection-toggle
And I run :move-to-next-char
And I run :yank selection
Then the message "1 char yanked to clipboard" should be shown.
Then the message "1 char yanked to clipboard" should be shown
Scenario: :yank selection with primary selection
When selection is supported
And I run :selection-toggle
And I run :move-to-end-of-word
And I run :yank selection --sel
Then the message "3 chars yanked to primary selection" should be shown.
Then the message "3 chars yanked to primary selection" should be shown
And the primary selection should contain "one"
Scenario: :yank selection with --keep
@ -40,8 +40,8 @@ Feature: Caret mode
And I run :yank selection --keep
And I run :move-to-end-of-word
And I run :yank selection --keep
Then the message "3 chars yanked to clipboard" should be shown.
And the message "7 chars yanked to clipboard" should be shown.
Then the message "3 chars yanked to clipboard" should be shown
And the message "7 chars yanked to clipboard" should be shown
And the clipboard should contain "one two"
# :selection-follow

View File

@ -512,7 +512,7 @@ Feature: Tab management
And I open data/numbers/2.txt in a new tab
And I open data/numbers/3.txt in a new tab
And I run :tab-move with count 23
Then the error "Can't move tab to position 23!" should be shown.
Then the error "Can't move tab to position 23!" should be shown
And the following tabs should be open:
- data/numbers/1.txt
- data/numbers/2.txt
@ -543,7 +543,7 @@ Feature: Tab management
And I open data/numbers/2.txt in a new tab
And I open data/numbers/3.txt in a new tab
And I run :tab-move -5
Then the error "Can't move tab to position -1!" should be shown.
Then the error "Can't move tab to position -1!" should be shown
And the following tabs should be open:
- data/numbers/1.txt
- data/numbers/2.txt
@ -564,7 +564,7 @@ Feature: Tab management
And I open data/numbers/2.txt in a new tab
And I open data/numbers/3.txt in a new tab
And I run :tab-move -2 with count 4
Then the error "Can't move tab to position 4!" should be shown.
Then the error "Can't move tab to position 4!" should be shown
And the following tabs should be open:
- data/numbers/1.txt
- data/numbers/2.txt
@ -674,7 +674,7 @@ Feature: Tab management
Scenario: :tab-clone with -b and -w
When I run :tab-clone -b -w
Then the error "Only one of -b/-w/-p can be given!" should be shown.
Then the error "Only one of -b/-w/-p can be given!" should be shown
Scenario: Cloning a tab with history and title
When I open data/title.html