From ddeaedc136e9bf75dba2b73e21a15a5735f95a61 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Wed, 8 Jan 2025 16:46:48 -0500 Subject: [PATCH] tests: Add missing semicolon This should have been in commit 06c47695fcd1873c5e7b874cf4fee3da126126f0. The tests that use this module did not fail because an import failure is assumed to be caused by a missing dependency, not a genuine bug. --- t/lib/ddclient/t/HTTPD.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/lib/ddclient/t/HTTPD.pm b/t/lib/ddclient/t/HTTPD.pm index 94ab271..6879372 100644 --- a/t/lib/ddclient/t/HTTPD.pm +++ b/t/lib/ddclient/t/HTTPD.pm @@ -104,7 +104,7 @@ sub reset { our $certdir = "$ENV{abs_top_srcdir}/t/lib/ddclient/Test/Fake/HTTPD"; our $ca_file = "$certdir/dummy-ca-cert.pem"; -our $other_ca_file = "$certdir/other-ca-cert.pem" +our $other_ca_file = "$certdir/other-ca-cert.pem"; my %daemons;