summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-09-15 02:02:04 +0200
committerLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-09-15 02:02:04 +0200
commitc892db9ae16183fdda9c96b3d4b93c58355b34ac (patch)
tree175ad0c93221a39a7d51f02b8b088ba02c408462
parent404d52efb9b814013d5664019cab714253ac13ff (diff)
downloadmonitoring-plugins-c892db9ae16183fdda9c96b3d4b93c58355b34ac.tar.gz
Fix typos
-rw-r--r--plugins/t/check_curl.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/t/check_curl.t b/plugins/t/check_curl.t
index 240c8f37..5d1f1811 100644
--- a/plugins/t/check_curl.t
+++ b/plugins/t/check_curl.t
@@ -155,23 +155,23 @@ SKIP: {
155 155
156 $res = NPTest->testCmd( "./$plugin $host_tls_http -C 1" ); 156 $res = NPTest->testCmd( "./$plugin $host_tls_http -C 1" );
157 is( $res->return_code, 0, "Old syntax for cert checking okay" ); 157 is( $res->return_code, 0, "Old syntax for cert checking okay" );
158 # deactived since different timings will change the output 158 # deactivated since different timings will change the output
159 # TODO compare without perfdata 159 # TODO compare without perfdata
160 # is( $res->output, $saved_cert_output, "Same output as new syntax" ); 160 # is( $res->output, $saved_cert_output, "Same output as new syntax" );
161 161
162 $res = NPTest->testCmd( "./$plugin -H $host_tls_http -C 1" ); 162 $res = NPTest->testCmd( "./$plugin -H $host_tls_http -C 1" );
163 is( $res->return_code, 0, "Updated syntax for cert checking okay" ); 163 is( $res->return_code, 0, "Updated syntax for cert checking okay" );
164 # deactived since different timings will change the output 164 # deactivated since different timings will change the output
165 # TODO compare without perfdata 165 # TODO compare without perfdata
166 # is( $res->output, $saved_cert_output, "Same output as new syntax" ); 166 # is( $res->output, $saved_cert_output, "Same output as new syntax" );
167 167
168 $res = NPTest->testCmd( "./$plugin -C 1 $host_tls_http" ); 168 $res = NPTest->testCmd( "./$plugin -C 1 $host_tls_http" );
169 # deactived since different timings will change the output 169 # deactivated since different timings will change the output
170 # TODO compare without perfdata 170 # TODO compare without perfdata
171 # cmp_ok( $res->output, 'eq', $saved_cert_output, "--ssl option automatically added"); 171 # cmp_ok( $res->output, 'eq', $saved_cert_output, "--ssl option automatically added");
172 172
173 $res = NPTest->testCmd( "./$plugin $host_tls_http -C 1" ); 173 $res = NPTest->testCmd( "./$plugin $host_tls_http -C 1" );
174 # deactived since different timings will change the output 174 # deactivated since different timings will change the output
175 # TODO compare without perfdata 175 # TODO compare without perfdata
176 # cmp_ok( $res->output, 'eq', $saved_cert_output, "Old syntax for cert checking still works"); 176 # cmp_ok( $res->output, 'eq', $saved_cert_output, "Old syntax for cert checking still works");
177 177