Adapt translation unit test to changes made in r3865 (#820)

This commit is contained in:
Clément Oudot 2015-07-23 08:15:12 +00:00
parent aedbc2c97c
commit 5325750bd4

View File

@ -65,7 +65,9 @@ my @nodes = @{ getNodes($tree) };
my @unTr;
foreach (@nodes) {
push @unTr, $_ unless ( $keys->{$_} );
my $node = $_;
$node =~ s/^\*//;
push @unTr, $node unless ( $keys->{$node} );
}
ok( @unTr == 0,
'All attributes translated for Tree.pm' . ( @unTr ? " (@unTr)" : "" ) );