Skip to content

Commit

Permalink
Fix test case in TestCreateExpectedEventPatterns (#8022)
Browse files Browse the repository at this point in the history
  • Loading branch information
creydr committed Jun 21, 2024
1 parent c9deeb9 commit 825202f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/rekt/features/broker/topology_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,14 +175,14 @@ func TestCreateExpectedEventPatterns(t *testing.T) {
DeadLetterSink: dlqSink,
},
t0FailCount: 0,
t1FailCount: 1,
t1FailCount: 2,
want: map[string]knconf.EventPattern{
"t0": {
Success: []bool{true},
Interval: []uint{0},
},
"t1": {
Success: []bool{false, true},
Success: []bool{false, false},
Interval: []uint{0, 0},
},
"t0dlq": noEvents,
Expand Down Expand Up @@ -214,7 +214,7 @@ func TestCreateExpectedEventPatterns(t *testing.T) {
},
}} {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
//t.Parallel()
cfg := []triggerCfg{{
delivery: tt.t0DS,
failCount: tt.t0FailCount,
Expand Down

0 comments on commit 825202f

Please sign in to comment.