Set a fixed date in pipeline shedule spec

Fixes flaky master
This commit is contained in:
Heinrich Lee Yu 2019-06-19 17:27:44 +08:00
parent 8716eb0cef
commit 31cef128e8
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ describe Ci::PipelineSchedule do
let(:pipeline_schedule) { create(:ci_pipeline_schedule, :every_minute) } let(:pipeline_schedule) { create(:ci_pipeline_schedule, :every_minute) }
it "updates next_run_at to the sidekiq worker's execution time" do it "updates next_run_at to the sidekiq worker's execution time" do
Timecop.freeze do Timecop.freeze(2019, 06, 19, 12, 00) do
expect(pipeline_schedule.next_run_at).to eq(cron_worker_next_run_at) expect(pipeline_schedule.next_run_at).to eq(cron_worker_next_run_at)
end end
end end