From 2fa157baf6db236dd31dfd1bafcf00b6b98d24eb Mon Sep 17 00:00:00 2001 From: jmtcsngr Date: Thu, 8 Feb 2024 15:50:45 +0000 Subject: [PATCH] more explicit message on note --- t/34-monitor-runfolder-staging.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/34-monitor-runfolder-staging.t b/t/34-monitor-runfolder-staging.t index a2293658..f4d755d3 100644 --- a/t/34-monitor-runfolder-staging.t +++ b/t/34-monitor-runfolder-staging.t @@ -116,7 +116,7 @@ subtest 'computing glob and updating run data from filesystem' => sub { for my $dir (qw/incoming analysis outgoing/) { my $rfpath = $path; $rfpath =~ s/outgoing/$dir/; - note $rfpath; + note 'Testing ' . $rfpath; my $test = Monitor::RunFolder::Staging->new(runfolder_path => $rfpath); is($test->_get_folder_path_glob, $glob, "glob for /$dir/"); } @@ -157,7 +157,7 @@ subtest 'folder identifies copy complete for NovaSeq' => sub { for my $file_name (qw[CopyComplete Copycomplete copycomplete CopyComplete_old.txt ]) { - note $file_name; + note 'Testing ' . $file_name; my $path_to_wrong_copy_complete = qq[$fs_run_folder/$file_name]; touch_file($path_to_wrong_copy_complete); ok(!$run_folder->is_run_complete(), 'Run is not complete');