reverted unneeded change to field name in Treelike.pm to parent from parent_fk, updat...
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest.pm
index 8252ecc..aea28e1 100755 (executable)
@@ -229,7 +229,7 @@ sub populate_schema {
     ]);
     
     $schema->populate('TreeLike', [
-        [ qw/id parent_fk name/ ],
+        [ qw/id parent name/ ],
         [ 1, undef, 'root' ],        
         [ 2, 1, 'foo'  ],
         [ 3, 2, 'bar'  ],