Fixed error with filter keyboard tests

Issue filter now appends a space & the test wasn't taking this into
account when checking the value
This commit is contained in:
Phil Hughes 2017-01-25 10:43:37 +00:00
parent 1138afe7c0
commit 2fb635888b
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ describe 'Dropdown label', js: true, feature: true do
filtered_search.native.send_keys(:down, :down, :enter)
expect(filtered_search.value).to eq("label:~#{special_label.name}")
expect(filtered_search.value).to eq("label:~#{special_label.name} ")
end
end