This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regen pod issues
[perl5.git] / t / porting / bincompat.t
index f65fe37..fae9d54 100644 (file)
@@ -6,13 +6,13 @@ use Config;
 
 plan(2);
 
-# Defiantely a white box test...
+# Defiantly a white box test...
 
 # As we need to call it direct, we'll take advantage of its result ordering:
 my @to_check = qw(bincompat_options non_bincompat_options);
 my @V = map {s/^ //r} Internals::V();
 
 while (my ($index, $sub) = each @to_check) {
-    my $got = join ' ', &{Config->can($sub)}();
+    my $got = join ' ', sort &{Config->can($sub)}();
     is($got, $V[$index], "C source code has $sub in sorted order");
 }