From: Greg Sabino Mullane Date: Mon, 27 Apr 2009 21:59:17 +0000 (-0400) Subject: Bump up limits to make tests pass. X-Git-Tag: 2.9.0~61 X-Git-Url: http://git.postgresql.org/gitweb/static/main.js?a=commitdiff_plain;h=1b816b5539515755c95f40a67fa51cde47afa1c2;p=check_postgres.git Bump up limits to make tests pass. --- diff --git a/t/02_bloat.t b/t/02_bloat.t index 561f93fe6..07fa76893 100644 --- a/t/02_bloat.t +++ b/t/02_bloat.t @@ -37,10 +37,10 @@ like ($cp->run('-w=10MB'), qr{^$label OK: DB "postgres"}, $t); for my $size (qw/bytes kilobytes megabytes gigabytes terabytes exabytes petabytes zettabytes/) { $t=qq{$S returns ok for no bloat with a unit of $size}; - like ($cp->run("-w=10000$size"), qr{^$label OK: DB "postgres"}, $t); + like ($cp->run("-w=100000$size"), qr{^$label OK: DB "postgres"}, $t); my $short = substr($size, 0, 1); $t=qq{$S returns ok for no bloat with a unit of $short}; - like ($cp->run("-w=10000$short"), qr{^$label OK: DB "postgres"}, $t); + like ($cp->run("-w=100000$short"), qr{^$label OK: DB "postgres"}, $t); } $t=qq{$S returns correct message if no tables due to exclusion};