diff --git a/core/sequencer/dummy_test.go b/core/sequencer/dummy_test.go index 4d67610ea9..6850c0635f 100644 --- a/core/sequencer/dummy_test.go +++ b/core/sequencer/dummy_test.go @@ -154,7 +154,7 @@ func TestDummySequencer_Concurrency(t *testing.T) { for i := 0; i < numGoroutines; i++ { go func(routineID int) { for j := 0; j < numOperationsPerGoroutine; j++ { - // Create a unique ID for this operation + // Create a unique ID for this operation ID := []byte(fmt.Sprintf("-%d-%d", routineID, j)) // Create a batch @@ -215,7 +215,7 @@ func TestDummySequencer_Multiples(t *testing.T) { seq := NewDummySequencer() ctx := t.Context() - // Create multiple IDs and batches + // Create multiple IDs and batches IDs := [][]byte{ []byte("-1"), []byte("-2"),