@@ -272,7 +272,8 @@ func TestQueue_LinearDependencyExecution(t *testing.T) {
272272 // Check that all entries are ready initially and in order A, B, C
273273 readyEntries := q .GetReadyWithDependencies (logger .CreateLogger ())
274274 assert .Len (t , readyEntries , 1 , "Initially only A should be ready" )
275- assert .Equal (t , queue .StatusReady , readyEntries [0 ].Status , "Entry %s should have StatusReady" , readyEntries [0 ].Component .Path ())
275+ assert .Equal (t , queue .StatusReady , readyEntries [0 ].Status ,
276+ "Entry %s should have StatusReady" , readyEntries [0 ].Component .Path ())
276277 assert .Equal (t , "A" , readyEntries [0 ].Component .Path (), "First ready entry should be A" )
277278
278279 // Mark A as running and complete it
@@ -325,7 +326,8 @@ func TestQueue_ParallelExecution(t *testing.T) {
325326 // 1. Initially, only A should be ready
326327 readyEntries := q .GetReadyWithDependencies (logger .CreateLogger ())
327328 assert .Len (t , readyEntries , 1 , "Initially only A should be ready" )
328- assert .Equal (t , queue .StatusReady , readyEntries [0 ].Status , "Entry %s should have StatusReady" , readyEntries [0 ].Component .Path ())
329+ assert .Equal (t , queue .StatusReady , readyEntries [0 ].Status ,
330+ "Entry %s should have StatusReady" , readyEntries [0 ].Component .Path ())
329331 assert .Equal (t , "A" , readyEntries [0 ].Component .Path (), "First ready entry should be A" )
330332
331333 // Mark A as running and complete it
@@ -418,7 +420,8 @@ func TestQueue_FailFast(t *testing.T) {
418420
419421 // All entries should be listed as terminal (A: Failed, B/C: EarlyExit)
420422 for _ , entry := range q .Entries {
421- assert .True (t , entry .Status == queue .StatusFailed || entry .Status == queue .StatusEarlyExit , "Entry %s should be terminal" , entry .Component .Path ())
423+ assert .True (t , entry .Status == queue .StatusFailed || entry .Status == queue .StatusEarlyExit ,
424+ "Entry %s should be terminal" , entry .Component .Path ())
422425 }
423426
424427 // Now all should be terminal
0 commit comments