Skip to content

Commit

Permalink
Fixed warning in a test
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcam committed Oct 13, 2023
1 parent 4f2c26a commit f4e86e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/60-autoqc-results-result.t
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f4e86e6

Please sign in to comment.