diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-06-15 14:43:47 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-06-20 15:32:29 +0200 |
commit | caf6b9918e3f7a79c9ffcffd1880f29422d50eb5 (patch) | |
tree | 5c8de1f43c48c6df5a6da35bf948b1143c490699 /spec | |
parent | 51ce9a6caa15b5619b486b8ea81d834ec1206561 (diff) | |
download | gitlab-ce-caf6b9918e3f7a79c9ffcffd1880f29422d50eb5.tar.gz |
Check warnings when building compound status SQL query
Diffstat (limited to 'spec')
-rw-r--r-- | spec/models/commit_status_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/commit_status_spec.rb b/spec/models/commit_status_spec.rb index dc348f6cd33..1e074c7ad26 100644 --- a/spec/models/commit_status_spec.rb +++ b/spec/models/commit_status_spec.rb @@ -309,7 +309,7 @@ describe CommitStatus, :models do context 'when using a scope to select latest statuses' do before do - create_status(name: 'test', status: 'failed') + create_status(name: 'test', retried: true, status: 'failed') create_status(allow_failure: true, name: 'test', status: 'failed') end |