From 89263e646566bf983c265c85362acfceb657c894 Mon Sep 17 00:00:00 2001 From: Daniel Nichter Date: Tue, 6 Mar 2012 12:05:52 -0700 Subject: [PATCH] Make test case-insenstive so it works on 5.0 as well as 5.1+. --- t/pt-upgrade/basics.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/pt-upgrade/basics.t b/t/pt-upgrade/basics.t index e8bb724d..5dc97c66 100644 --- a/t/pt-upgrade/basics.t +++ b/t/pt-upgrade/basics.t @@ -174,7 +174,7 @@ ok( my $row = $dbh1->selectrow_arrayref("show create table test.mk_upgrade_left"); like( $row->[1], - qr/`SUM\(total\)`\s+double\sDEFAULT/, + qr/`SUM\(total\)`\s+double\sDEFAULT/i, "No M,D in table def (bug 926598)" );