summaryrefslogtreecommitdiff
path: root/spec/models/ci/commit_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/ci/commit_spec.rb')
-rw-r--r--spec/models/ci/commit_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/models/ci/commit_spec.rb b/spec/models/ci/commit_spec.rb
index 07b875e4f88..d36aca113a1 100644
--- a/spec/models/ci/commit_spec.rb
+++ b/spec/models/ci/commit_spec.rb
@@ -351,8 +351,8 @@ describe Ci::Commit, models: true do
end
describe '#update_state!' do
- it 'execute update_state! after touching object' do
- expect(commit).to receive(:update_state!).and_return(true)
+ it 'execute update_state after touching object' do
+ expect(commit).to receive(:update_state).and_return(true)
commit.touch
end
@@ -360,7 +360,7 @@ describe Ci::Commit, models: true do
let(:commit_status) { build :commit_status, commit: commit }
it 'execute update_state after saving dependent object' do
- expect(commit).to receive(:update_state!).and_return(true)
+ expect(commit).to receive(:update_state).and_return(true)
commit_status.save
end
end