Simplify debugfh rebuilding after clearing
[dbsrgits/DBIx-Class.git] / t / delete / m2m.t
index de4d3fd..7a1628d 100644 (file)
@@ -9,7 +9,8 @@ my $schema = DBICTest->init_schema();
 
 my $cd = $schema->resultset("CD")->find(2);
 ok $cd->liner_notes;
-ok keys %{$cd->{_relationship_data}}, "_relationship_data populated";
+
+ok scalar(keys %{$cd->{_relationship_data}}), "_relationship_data populated";
 
 $cd->discard_changes;
 ok $cd->liner_notes, 'relationships still valid after discarding changes';