[nagiosplug] tests/check_http.t: Fix test case

Nagios Plugin Development nagios-plugins at users.sourceforge.net
Fri Aug 10 14:40:15 CEST 2012


 Module: nagiosplug
 Branch: master
 Commit: 62d01df1fd8a0d54bb265b2234f3298d85381243
 Author: Holger Weiss <holger at zedat.fu-berlin.de>
   Date: Fri Aug 10 12:35:16 2012 +0200
    URL: http://nagiosplug.git.sf.net/git/gitweb.cgi?p=nagiosplug/nagiosplug;a=commit;h=62d01df

tests/check_http.t: Fix test case

Fix the test case which is meant to make sure that

	check_http -C <n>,<m> [...]

returns a CRITICAL state if <m> is large enough.

---

 plugins/tests/check_http.t |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/plugins/tests/check_http.t b/plugins/tests/check_http.t
index 8337f52..ab4ab4f 100755
--- a/plugins/tests/check_http.t
+++ b/plugins/tests/check_http.t
@@ -189,7 +189,7 @@ SKIP: {
 	like( $result->output, '/WARNING - Certificate \'Ton Voon\' expires in \d+ day\(s\) \(03/03/2019 21:41\)./', "output ok" );
 
         $result = NPTest->testCmd( "$command -p $port_https -S -C 13960,14000" );
-        is( $result->return_code, 1, "$command -p $port_https -S -C 139600,14000" );
+        is( $result->return_code, 2, "$command -p $port_https -S -C 13960,14000" );
         like( $result->output, '/CRITICAL - Certificate \'Ton Voon\' expires in \d+ day\(s\) \(03/03/2019 21:41\)./', "output ok" );
 
 	# Expired cert tests





More information about the Commits mailing list