From fd498518152bb8537db065d37609e58d1ef9c40b Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Tue, 29 Jul 2014 23:43:48 -0400 Subject: [PATCH] VRFS-1979 fix test --- web/spec/features/signup_spec.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/spec/features/signup_spec.rb b/web/spec/features/signup_spec.rb index 22533ac61..4cb1c74bd 100644 --- a/web/spec/features/signup_spec.rb +++ b/web/spec/features/signup_spec.rb @@ -59,10 +59,10 @@ describe "Signup", :js => true, :type => :feature, :capybara_feature => true do end it { - should have_title("JamKazam") - should have_selector('h2', text: "musicians") + should have_title("Signup Confirmation") + should have_selector('h1', text: "Email Confirmed") UserMailer.deliveries.length.should == 1 - UserMailer.deliveries[0].html_part.body.include?("Following are links to some resources")== 1 + UserMailer.deliveries[0].html_part.body.include?("Following are links to some resources") == 1 } end end