diff options
Diffstat (limited to 't/02_custom_query.t')
-rw-r--r-- | t/02_custom_query.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/02_custom_query.t b/t/02_custom_query.t index 6cf20afb7..ac30c4d28 100644 --- a/t/02_custom_query.t +++ b/t/02_custom_query.t @@ -12,7 +12,7 @@ use CP_Testing; use vars qw/$dbh $result $t $host $dbname/; -my $good_query = q{SELECT count(*) FROM pg_database}; +my $good_query = q{SELECT count(*) AS result FROM pg_database}; my $bad_query = q{THIS IS NOT A QUERY}; my $cp = CP_Testing->new( {default_action => 'custom_query'} ); |