From 6465564f2aa7f60501e266c832fc4db7b4d941dc Mon Sep 17 00:00:00 2001 From: Sebastian Norling <1932208+Bazze@users.noreply.github.com> Date: Thu, 21 May 2026 14:40:57 +0200 Subject: [PATCH] style(event/stream): align reconnect_test Options struct literal gofmt -w pass on reconnect_test.go. The Options struct field names had mismatched alignment; reformatted to match gofmt canonical layout. No behaviour change. --- event/stream/reconnect_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/event/stream/reconnect_test.go b/event/stream/reconnect_test.go index fd229a5..9162768 100644 --- a/event/stream/reconnect_test.go +++ b/event/stream/reconnect_test.go @@ -44,11 +44,11 @@ func TestStream_RecreatesSubscriptionAfterRepeatedPullErrors(t *testing.T) { ctx, cancel := context.WithCancel(context.Background()) defer cancel() s, err := newStream(ctx, fc, Options{ - DeviceID: "cam-1", - PullTimeout: 50 * time.Millisecond, - ReconnectAfterFailures: 1, - RetryBackoff: 10 * time.Millisecond, - InitialTermination: 30 * time.Second, // keep renew quiet + DeviceID: "cam-1", + PullTimeout: 50 * time.Millisecond, + ReconnectAfterFailures: 1, + RetryBackoff: 10 * time.Millisecond, + InitialTermination: 30 * time.Second, // keep renew quiet }) require.NoError(t, err) defer s.Close()