From 0158ed3fcb84f625b78def6b743c0c68912b0bf8 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Thu, 1 Jan 2026 16:34:05 -0800 Subject: [PATCH] Appease rubocop --- test/support/circleci.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/support/circleci.rb b/test/support/circleci.rb index 5a36bfa..18de4b4 100644 --- a/test/support/circleci.rb +++ b/test/support/circleci.rb @@ -1,6 +1,6 @@ # Generate XML test reports that can be parsed by CircleCI -if ENV["CIRCLECI"] +if ENV['CIRCLECI'] require 'minitest/ci' - Minitest::Ci.report_dir = "#{ENV["CIRCLE_TEST_REPORTS"]}/reports" + Minitest::Ci.report_dir = File.join(ENV.fetch('CIRCLE_TEST_REPORTS'), 'reports') end