From 14f52725d362623bd2efc772356f0bc00926eeca Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 7 Sep 2022 14:04:41 -0700 Subject: [PATCH] Bug 31351: (QA follow-up) Trivial string fix Signed-off-by: Tomas Cohen Arazi --- t/db_dependent/Koha/BackgroundJob.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/Koha/BackgroundJob.t b/t/db_dependent/Koha/BackgroundJob.t index f0f57163b1..80674fbde5 100755 --- a/t/db_dependent/Koha/BackgroundJob.t +++ b/t/db_dependent/Koha/BackgroundJob.t @@ -267,7 +267,7 @@ subtest 'decoded_data() and set_encoded_data() tests' => sub { is( ord( $job->decoded_data->{favorite_Chinese}->[0] ), 33873, 'We still found Unicode \x8451' ); is( ord( $job->decoded_data->{latin_dancing}->[0] ), 162, 'We still found the equivalent of Unicode \x00A2' ); - # Testing with sending encoded data (which we normally shouldnt do) + # Testing with sending encoded data (which we normally shouldn't do) my $utf8_data; foreach my $k ( 'favorite_Chinese', 'latin_dancing' ) { foreach my $c ( @{$data->{$k}} ) { -- 2.39.5