summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Sabino Mullane2009-08-03 16:01:01 +0000
committerGreg Sabino Mullane2009-08-03 16:01:01 +0000
commitefec4badb7f8678a7eac20cbe2c950671b82c3d6 (patch)
treeb3902c1ed81bff508bfc8cfc77cf822ca0fd4ccc
parent3f0b95db0516018c4ea8c9a8ab2c8a4386ae1fa4 (diff)
Allow for larger times
-rw-r--r--t/02_checkpoint.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/02_checkpoint.t b/t/02_checkpoint.t
index ec76dfb83..b74547127 100644
--- a/t/02_checkpoint.t
+++ b/t/02_checkpoint.t
@@ -69,10 +69,10 @@ $t=qq{$S returns the correct number of seconds};
like ($cp->run(qq{-c 1 --datadir="$host"}), qr{was \d+ seconds ago}, $t);
$t=qq{$S returns the expected output for MRTG};
-like ($cp->run(qq{-c 1 --output=MRTG --datadir="$host"}), qr{^\d\n0\n\nLast checkpoint was \d+ seconds ago}, $t);
+like ($cp->run(qq{-c 1 --output=MRTG --datadir="$host"}), qr{^\d+\n0\n\nLast checkpoint was \d+ seconds ago}, $t);
$t=qq{$S returns the expected output for MRTG};
-like ($cp->run(qq{-c 199 --output=MRTG --datadir="$host"}), qr{^\d\n0\n\nLast checkpoint was \d+ seconds ago}, $t);
+like ($cp->run(qq{-c 199 --output=MRTG --datadir="$host"}), qr{^\d+\n0\n\nLast checkpoint was \d+ seconds ago}, $t);
}