summaryrefslogtreecommitdiff
path: root/spec/features/profiles
diff options
context:
space:
mode:
authorConnor Shea <connor.james.shea@gmail.com>2016-08-12 11:44:43 -0600
committerAlfredo Sumaran <alfredo@gitlab.com>2016-08-13 00:57:40 -0500
commit1392cad8956c490b5ba6106678ab16d790662148 (patch)
tree48d43418dee36b8c244794b9a6bb94f5599c7488 /spec/features/profiles
parent5d8ad797503c76ab9818584cf3b2e945ff8cfd68 (diff)
downloadgitlab-ce-1392cad8956c490b5ba6106678ab16d790662148.tar.gz
Remove sleeping and replace escaped text.
Diffstat (limited to 'spec/features/profiles')
-rw-r--r--spec/features/profiles/preferences_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/profiles/preferences_spec.rb b/spec/features/profiles/preferences_spec.rb
index 259ed7531d8..d14a1158b67 100644
--- a/spec/features/profiles/preferences_spec.rb
+++ b/spec/features/profiles/preferences_spec.rb
@@ -69,13 +69,13 @@ describe 'Profile > Preferences', feature: true do
allowing_for_delay do
find('#logo').click
- expect(page).to have_content('You don\'t have starred projects yet')
+ expect(page).to have_content("You don't have starred projects yet")
expect(page.current_path).to eq starred_dashboard_projects_path
end
click_link 'Your Projects'
- expect(page).not_to have_content('You don\'t have starred projects yet')
+ expect(page).not_to have_content("You don't have starred projects yet")
expect(page.current_path).to eq dashboard_projects_path
end
end