From ade4d51ce82e509dcf09bc861d0c71360037f6cc Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Tue, 7 Oct 2025 12:34:08 -0400 Subject: [PATCH] fmt --- compatibility_test.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/compatibility_test.go b/compatibility_test.go index 07b3f21a3..578f08368 100644 --- a/compatibility_test.go +++ b/compatibility_test.go @@ -368,7 +368,7 @@ func TestSAM3CompatibilityIntegration(t *testing.T) { } t.Log("✓ Primary session creation pattern works") - + // Explicitly close session to avoid conflicts with subsequent tests session.Close() }, @@ -382,7 +382,7 @@ func TestSAM3CompatibilityIntegration(t *testing.T) { t.Fatalf("Failed to create SAM connection for stream session: %v", err) } defer streamSam.Close() - + // Generate unique keys for each session to avoid conflicts keys, err := streamSam.NewKeys() if err != nil { @@ -408,7 +408,7 @@ func TestSAM3CompatibilityIntegration(t *testing.T) { } t.Log("✓ Stream session creation and listener pattern works") - + // Explicitly close session to avoid conflicts with subsequent tests listener.Close() session.Close() @@ -423,7 +423,7 @@ func TestSAM3CompatibilityIntegration(t *testing.T) { t.Fatalf("Failed to create SAM connection for datagram session: %v", err) } defer datagramSam.Close() - + // Generate unique keys for each session to avoid conflicts keys, err := datagramSam.NewKeys() if err != nil { @@ -442,7 +442,7 @@ func TestSAM3CompatibilityIntegration(t *testing.T) { } t.Log("✓ Datagram session creation pattern works") - + // Explicitly close session to avoid conflicts with subsequent tests session.Close() }, @@ -456,7 +456,7 @@ func TestSAM3CompatibilityIntegration(t *testing.T) { t.Fatalf("Failed to create SAM connection for raw session: %v", err) } defer rawSam.Close() - + // Generate unique keys for each session to avoid conflicts keys, err := rawSam.NewKeys() if err != nil { @@ -475,7 +475,7 @@ func TestSAM3CompatibilityIntegration(t *testing.T) { } t.Log("✓ Raw session creation pattern works") - + // Explicitly close session to avoid conflicts with subsequent tests session.Close() },