diff options
Diffstat (limited to 'spec/features/lint_spec.rb')
-rw-r--r-- | spec/features/lint_spec.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/spec/features/lint_spec.rb b/spec/features/lint_spec.rb index 4a1ea26..1160f24 100644 --- a/spec/features/lint_spec.rb +++ b/spec/features/lint_spec.rb @@ -11,11 +11,10 @@ describe "Lint" do fill_in "content", with: content click_on "Validate" within "table" do - page.should have_content("Skip Refs") - page.should have_content("Job - Rspec") - page.should have_content("Job - Spinach") - page.should have_content("Deploy Job - cap deploy") - page.should have_content("Deploy Job - Deploy to staging") + page.should have_content("Job - rspec") + page.should have_content("Job - spinach") + page.should have_content("Deploy Job - staging") + page.should have_content("Deploy Job - production") end end |