Commit 1cd2df17 authored by Rémy Coutable's avatar Rémy Coutable

Fix a flaky test by stop using hardcoded ID & name

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 397835f2
...@@ -204,11 +204,13 @@ RSpec.describe Gitlab::Analytics::CycleAnalytics::RequestParams do ...@@ -204,11 +204,13 @@ RSpec.describe Gitlab::Analytics::CycleAnalytics::RequestParams do
subject { described_class.new(params).to_data_attributes } subject { described_class.new(params).to_data_attributes }
it { expect(subject[:milestone]).to eq('title') } it "has the correct attributes" do
it { expect(subject[:assignees]).to eq('["username1"]') } expect(subject[:milestone]).to eq('title')
it { expect(subject[:labels]).to eq('["label1","label2"]') } expect(subject[:assignees]).to eq('["username1"]')
it { expect(subject[:author]).to eq('author') } expect(subject[:labels]).to eq('["label1","label2"]')
it { expect(subject[:stage]).to eq('{"id":1,"title":"Stage #1"}') } expect(subject[:author]).to eq('author')
expect(subject[:stage]).to eq(%Q|{"id":#{stage.id},"title":"#{stage.name}"}|)
end
end end
describe 'sorting params' do describe 'sorting params' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment