From 815fb96e3f68283eb049f96cb441f69f1a04ea9a Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Mon, 18 Nov 2024 16:33:13 -0500 Subject: [PATCH] Fix build failure --- csharp/test/Ice/idleTimeout/AllTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/test/Ice/idleTimeout/AllTests.cs b/csharp/test/Ice/idleTimeout/AllTests.cs index 505dff7b1c4..4a644689a52 100644 --- a/csharp/test/Ice/idleTimeout/AllTests.cs +++ b/csharp/test/Ice/idleTimeout/AllTests.cs @@ -133,7 +133,7 @@ private static async Task testNoIdleTimeout(string proxyString, Properties prope test(connection is not null); await p.sleepAsync(2000); // the implementation in the server sleeps for 2,000ms - await connection.closeAsync(); + await connection!.closeAsync(); output.WriteLine("ok"); } }