Compare commits
No commits in common. 'c9' and 'c9-beta' have entirely different histories.
@ -0,0 +1,23 @@
|
|||||||
|
From 7c0798d6de3467603dff42253448e36aded7f5ac Mon Sep 17 00:00:00 2001
|
||||||
|
From: Steffen Ullrich <github@maulwuff.de>
|
||||||
|
Date: Fri, 22 Dec 2023 08:07:20 +0100
|
||||||
|
Subject: [PATCH] fixed test fail #147 with OpenSSL 3.2
|
||||||
|
|
||||||
|
---
|
||||||
|
t/core.t | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/t/core.t b/t/core.t
|
||||||
|
index e194811..22d78fb 100755
|
||||||
|
--- a/t/core.t
|
||||||
|
+++ b/t/core.t
|
||||||
|
@@ -74,7 +74,8 @@ unless (fork) {
|
||||||
|
LocalAddr => $localip,
|
||||||
|
);
|
||||||
|
print $client "Test\n";
|
||||||
|
- is( <$client>, "This server is SSL only", "Client non-SSL connection");
|
||||||
|
+
|
||||||
|
+ like( <$client>, qr/This server is SSL only/, "Client non-SSL connection");
|
||||||
|
close $client;
|
||||||
|
|
||||||
|
$client = IO::Socket::SSL->new(
|
Loading…
Reference in new issue