Skip to content

Commit ead32df

Browse files
committed
gofmt
1 parent 6580e94 commit ead32df

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

test/extended/machines/cluster_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,10 @@ func Test_bootTimelineSliceFormat(t *testing.T) {
8888
{action: "RebootRequest", time: mustTime("2026-01-20T22:01:27Z")},
8989
}
9090
formatted := fmt.Sprintf("%v", entries)
91-
if formatted == fmt.Sprintf("%v", []struct{ action string; time time.Time }{{action: "Boot"}, {action: "RebootRequest"}}) {
91+
if formatted == fmt.Sprintf("%v", []struct {
92+
action string
93+
time time.Time
94+
}{{action: "Boot"}, {action: "RebootRequest"}}) {
9295
t.Error("slice formatting is not using String() method")
9396
}
9497
expected := "[2026-01-20T22:20:50Z - Boot 2026-01-20T22:01:27Z - RebootRequest]"

0 commit comments

Comments
 (0)