--- trunk/t/6-unit.t 2005/11/19 23:48:19 69 +++ trunk/t/6-unit.t 2005/11/19 23:48:24 70 @@ -65,13 +65,13 @@ while (my $row = $isis->fetch) { - ok(my @ds = $n->data_structure($row), "data_structure"); + ok(my $ds = $n->data_structure($row), "data_structure"); -# diag Dumper(\@ds); +# diag Dumper($ds); ok(my $html = $out->apply( template => 'html.tt', - data => \@ds, + data => $ds, ), "apply"); $html =~ s#\s*[\n\r]+\s*##gs;