Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-12-21 18:10:05 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-12-21 18:10:05 +0300
commitcb3b8bd5897cb77b5a00278ab86db89c7ffa2efa (patch)
treeebccb2dd79320d49e3f8b33ad4d18387ff05d6b6 /spec/services/ci/build_report_result_service_spec.rb
parenteb8836dea46945d5adf20be26efde222b73e17f9 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/services/ci/build_report_result_service_spec.rb')
-rw-r--r--spec/services/ci/build_report_result_service_spec.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/spec/services/ci/build_report_result_service_spec.rb b/spec/services/ci/build_report_result_service_spec.rb
index 244ffbf4bbd..7c2702af086 100644
--- a/spec/services/ci/build_report_result_service_spec.rb
+++ b/spec/services/ci/build_report_result_service_spec.rb
@@ -6,12 +6,6 @@ RSpec.describe Ci::BuildReportResultService do
describe '#execute', :clean_gitlab_redis_shared_state do
subject(:build_report_result) { described_class.new.execute(build) }
- around do |example|
- travel_to(DateTime.parse('2020-07-01')) do
- example.run
- end
- end
-
context 'when build is finished' do
let(:build) { create(:ci_build, :success, :test_reports) }