summaryrefslogtreecommitdiff
path: root/spec/features/runners_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/runners_spec.rb')
-rw-r--r--spec/features/runners_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/runners_spec.rb b/spec/features/runners_spec.rb
index 829e5db..05fb7e0 100644
--- a/spec/features/runners_spec.rb
+++ b/spec/features/runners_spec.rb
@@ -60,7 +60,7 @@ describe "Runners", feature: true do
click_on "Remove runner"
end
- Runner.exists?(id: @specific_runner).should be_falsey
+ expect(Runner.exists?(id: @specific_runner)).to be_falsey
end
end
@@ -75,7 +75,7 @@ describe "Runners", feature: true do
click_on "Enable shared runners"
- @project.reload.shared_runners_enabled.should be_truthy
+ expect(@project.reload.shared_runners_enabled).to be_truthy
end
end