From 5917bbbe5c5d640655b182d598189484246f2ef7 Mon Sep 17 00:00:00 2001 From: Tarcisio Fedrizzi Date: Tue, 12 Jan 2016 11:25:14 +0100 Subject: [PATCH] Fixes wrong indentation in multiline clipboard text --- tests/integration/features/yankpaste.feature | 21 ++++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/tests/integration/features/yankpaste.feature b/tests/integration/features/yankpaste.feature index e8487848f..881cb1ede 100644 --- a/tests/integration/features/yankpaste.feature +++ b/tests/integration/features/yankpaste.feature @@ -107,11 +107,10 @@ Feature: Yanking and pasting. Scenario: Pasting multiple urls in a new tab Given I have a fresh instance - When I run :tab-only - And I put the following lines into the clipboard: - http://localhost:(port)/data/hello.txt - http://localhost:(port)/data/hello2.txt - http://localhost:(port)/data/hello3.txt + When I put the following lines into the clipboard: + http://localhost:(port)/data/hello.txt + http://localhost:(port)/data/hello2.txt + http://localhost:(port)/data/hello3.txt And I run :paste -t And I wait until data/hello.txt is loaded And I wait until data/hello2.txt is loaded @@ -126,9 +125,9 @@ Feature: Yanking and pasting. Given I open about:blank When I run :tab-only And I put the following lines into the clipboard: - http://localhost:(port)/data/hello.txt - http://localhost:(port)/data/hello2.txt - http://localhost:(port)/data/hello3.txt + http://localhost:(port)/data/hello.txt + http://localhost:(port)/data/hello2.txt + http://localhost:(port)/data/hello3.txt And I run :paste -b And I wait until data/hello.txt is loaded And I wait until data/hello2.txt is loaded @@ -142,9 +141,9 @@ Feature: Yanking and pasting. Scenario: Pasting multiple urls in new windows Given I have a fresh instance When I put the following lines into the clipboard: - http://localhost:(port)/data/hello.txt - http://localhost:(port)/data/hello2.txt - http://localhost:(port)/data/hello3.txt + http://localhost:(port)/data/hello.txt + http://localhost:(port)/data/hello2.txt + http://localhost:(port)/data/hello3.txt And I run :paste -w And I wait until data/hello.txt is loaded And I wait until data/hello2.txt is loaded