Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-03-31 15:08:55 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-31 15:08:55 +0300
commitea1dcaef18edf97b3ac73892d64ebaf5eecd7f68 (patch)
tree4ffca65c5590a6bb6ea6f72efda3feaf7be45ec2 /spec/features/runners_spec.rb
parent2c6c1c4dce92b5ef64c357156c9a27656e8bdbb8 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/runners_spec.rb')
-rw-r--r--spec/features/runners_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/runners_spec.rb b/spec/features/runners_spec.rb
index cc024ab8f35..21eef64e345 100644
--- a/spec/features/runners_spec.rb
+++ b/spec/features/runners_spec.rb
@@ -92,7 +92,7 @@ RSpec.describe 'Runners' do
context 'when a runner has a tag' do
before do
- specific_runner.update(tag_list: ['tag'])
+ specific_runner.update!(tag_list: ['tag'])
end
it 'user edits runner not to run untagged jobs' do
@@ -370,7 +370,7 @@ RSpec.describe 'Runners' do
context 'when a runner has a tag' do
before do
- runner.update(tag_list: ['tag'])
+ runner.update!(tag_list: ['tag'])
end
it 'user edits runner not to run untagged jobs' do
@@ -450,7 +450,7 @@ RSpec.describe 'Runners' do
context 'when a runner has a tag' do
before do
- runner.update(tag_list: ['tag'])
+ runner.update!(tag_list: ['tag'])
end
it 'user edits runner not to run untagged jobs' do