Skip to content

Commit

Permalink
run/locale.t: Use 'is' not 'ok' for a test
Browse files Browse the repository at this point in the history
'is' is a more modern, better options
  • Loading branch information
khwilliamson committed Feb 2, 2023
1 parent 2c7695d commit 86b0a3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/run/locale.t
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ EOF
SKIP: {
skip("no UTF-8 locale available where LC_NUMERIC radix isn't ASCII", 1 )
unless $utf8_radix;
ok($radix_encoded_as_utf8 == 1, "UTF-8 locale '$utf8_radix' with non-ASCII"
. " radix is marked UTF-8");
is($radix_encoded_as_utf8, 1, "UTF-8 locale '$utf8_radix' with non-ASCII"
. " radix is marked UTF-8");
}

SKIP: {
Expand Down

0 comments on commit 86b0a3c

Please sign in to comment.