Code

Revert "Add timezone support and fix checks around cert expiration" (keep the expirat...
[nagiosplug.git] / plugins / tests / check_http.t
index 0a1b0bc89da8fa695c2841d4d0bcf53515c73cb2..d7f4148c32b8105562d911cb4583d1541bb4706b 100755 (executable)
@@ -163,18 +163,18 @@ SKIP: {
        
        $result = NPTest->testCmd( "$command -p $port_https -S -C 14" );
        is( $result->return_code, 0, "$command -p $port_https -S -C 14" );
-       is( $result->output, 'OK - Certificate will expire on 03/03/2019 21:41 GMT.', "output ok" );
+       is( $result->output, 'OK - Certificate will expire on 03/03/2019 21:41.', "output ok" );
 
        $result = NPTest->testCmd( "$command -p $port_https -S -C 14000" );
        is( $result->return_code, 1, "$command -p $port_https -S -C 14000" );
-       like( $result->output, '/WARNING - Certificate expires in \d+ day\(s\) \(03/03/2019 21:41 GMT\)./', "output ok" );
+       like( $result->output, '/WARNING - Certificate expires in \d+ day\(s\) \(03/03/2019 21:41\)./', "output ok" );
 
 
        # Expired cert tests
        $result = NPTest->testCmd( "$command -p $port_https_expired -S -C 7" );
        is( $result->return_code, 2, "$command -p $port_https_expired -S -C 7" );
        is( $result->output, 
-               'CRITICAL - Certificate expired on 03/05/2009 00:13 GMT.',
+               'CRITICAL - Certificate expired on 03/05/2009 00:13.',
                "output ok" );
 
 }