From dba8dc966882191d258e0e38038279fb20354f59 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 14 Feb 2013 12:49:57 -0500 Subject: [PATCH] Fix query-all-tables test count, there are more tables now --- tests/query-all-tables.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/query-all-tables.pl b/tests/query-all-tables.pl index 55cc779f..19aee924 100755 --- a/tests/query-all-tables.pl +++ b/tests/query-all-tables.pl @@ -7,7 +7,7 @@ my $db = Hydra::Model::DB->new; my @sources = $db->schema->sources; my $nrtables = scalar(@sources); -use Test::Simple tests => 43; +use Test::Simple tests => 45; foreach my $source (@sources) { my $title = "Basic select query for $source";