diff options
author | Matija Čupić <matteeyah@gmail.com> | 2018-01-29 18:54:16 +0100 |
---|---|---|
committer | Matija Čupić <matteeyah@gmail.com> | 2018-02-05 18:58:19 +0100 |
commit | a8887a0d9c4a41a0707b92189572aeff10566af6 (patch) | |
tree | 6c7fb9025c2f1ffc7ae82ecaeffd0facd21c042d /spec/presenters/ci | |
parent | 0bfcdd66bf932c080398ff264323b5c0df17d05c (diff) | |
download | gitlab-ce-a8887a0d9c4a41a0707b92189572aeff10566af6.tar.gz |
Use `resource` in Group Variables routing scheme
Diffstat (limited to 'spec/presenters/ci')
-rw-r--r-- | spec/presenters/ci/group_variable_presenter_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/presenters/ci/group_variable_presenter_spec.rb b/spec/presenters/ci/group_variable_presenter_spec.rb index d20fae47939..cb58a757564 100644 --- a/spec/presenters/ci/group_variable_presenter_spec.rb +++ b/spec/presenters/ci/group_variable_presenter_spec.rb @@ -43,12 +43,12 @@ describe Ci::GroupVariablePresenter do describe '#edit_path' do subject { described_class.new(variable).edit_path } - it { is_expected.to eq(group_variables_save_multiple_path(group)) } + it { is_expected.to eq(group_variables_path(group)) } end describe '#delete_path' do subject { described_class.new(variable).delete_path } - it { is_expected.to eq(group_variables_save_multiple_path(group)) } + it { is_expected.to eq(group_variables_path(group)) } end end |