From f4e86e656f2df705dbd92c9f662f625ac4293bf6 Mon Sep 17 00:00:00 2001 From: Marina Gourtovaia Date: Fri, 13 Oct 2023 11:21:41 +0100 Subject: [PATCH] Fixed warning in a test --- t/60-autoqc-results-result.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/60-autoqc-results-result.t b/t/60-autoqc-results-result.t index 2537334c1..6fa1ff8f1 100644 --- a/t/60-autoqc-results-result.t +++ b/t/60-autoqc-results-result.t @@ -96,7 +96,7 @@ subtest 'saving object to and loading from file' => sub { $r->store($saved_path); my $json = $r->freeze(); is ($r->_id_run_common, 2549, 'one of private attributes is set'); - unlike($json, qr/\"_[:a-z:]/, 'private attributes are not serialized'); + unlike($json, qr/\"_[a-z]/, 'private attributes are not serialized'); delete $r->{'filename_root'}; my $saved_r = npg_qc::autoqc::results::result->load($saved_path); sleep 1;