From 5407573c7403fae8e4e27a9a50cb5a9fcab216f2 Mon Sep 17 00:00:00 2001 From: Carlos Salguero Date: Thu, 9 Mar 2017 17:30:11 -0300 Subject: [PATCH] PT-96 Fixed tests for SchemaIterator --- t/lib/SchemaIterator.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/lib/SchemaIterator.t b/t/lib/SchemaIterator.t index ebb74fa0..079aabb3 100644 --- a/t/lib/SchemaIterator.t +++ b/t/lib/SchemaIterator.t @@ -591,10 +591,10 @@ my $si = new SchemaIterator( Quoter => $q, TableParser => $tp, ); -for my $db (qw( information_schema performance_schema|lost\+found percona percona_schema )) { +for my $db (qw( information_schema performance_schema lost+found percona_schema )) { is( $si->database_is_allowed($db), - 1, + 0, "database is allowed: $db", ); }