From af7630b1833c11f48012d9f4020348262b48a140 Mon Sep 17 00:00:00 2001 From: Michael Karlesky Date: Fri, 26 Jul 2024 16:39:24 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Bug=20fix=20after=20ConfigWalkin?= =?UTF-8?q?ator=20refactoring?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/report_tests_log_factory/lib/tests_reporter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/report_tests_log_factory/lib/tests_reporter.rb b/plugins/report_tests_log_factory/lib/tests_reporter.rb index 4ce42a29..427244a0 100644 --- a/plugins/report_tests_log_factory/lib/tests_reporter.rb +++ b/plugins/report_tests_log_factory/lib/tests_reporter.rb @@ -57,7 +57,7 @@ def footer(results:, stream:) def update_filename(default_filename) # Fetch configured filename if it exists, otherwise return default filename - filename, _ = @config_walkinator.fetch_value( *keys, hash:@config, default:default_filename ) + filename, _ = @config_walkinator.fetch_value( :filename, hash:@config, default:default_filename ) return filename end