diff options
author | Greg Sabino Mullane | 2009-04-22 21:04:38 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2009-04-22 21:04:38 +0000 |
commit | b5efdf39a08107c07dce9502edffe368012b63d4 (patch) | |
tree | a572e361087a94a74ae24b47bd9d40ce7551106d | |
parent | c535dc650ce047098c4e5c9e26f5c39c08ac6dea (diff) |
Fix wording.
-rw-r--r-- | t/02_version.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/02_version.t b/t/02_version.t index ed0f9e9d1..eec3dd1ed 100644 --- a/t/02_version.t +++ b/t/02_version.t @@ -30,10 +30,10 @@ like ($cp->run('--output=mrtg --mrtg=foobar'), qr{ERROR: Invalid mrtg}, $t); $t=qq{$S fails when called without warning or critical}; like ($cp->run(''), qr{Must provide}, $t); -$t=qq{$S fails when called without invalid warning}; +$t=qq{$S fails when called with invalid warning}; like ($cp->run('-w foo'), qr{ERROR: Invalid string}, $t); -$t=qq{$S fails when called without invalid critical}; +$t=qq{$S fails when called with invalid critical}; like ($cp->run('-c foo'), qr{ERROR: Invalid string}, $t); $t=qq{$S gives correct output for warning on two-part version}; |