Bug 15517: Change wording for tests

Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com
This commit is contained in:
Jonathan Druart 2016-01-11 08:35:11 +00:00 committed by Brendan Gallagher
parent 8b2573e24e
commit 100d800060

View file

@ -30,11 +30,11 @@ for my $modules ( @modules ) {
if ( ref($val_1) eq 'ARRAY') {
is_deeply( $val_1, $val_2,
"tables related to $modules->[0] and $modules->[1] differs on $column_name.$column_attribute"
"tables related to $modules->[0] and $modules->[1] should not differ on $column_name.$column_attribute"
);
} else {
is( $val_1, $val_2,
"tables related to $modules->[0] and $modules->[1] differs on $column_name.$column_attribute"
"tables related to $modules->[0] and $modules->[1] should not differ on $column_name.$column_attribute"
);
}
}