Skip to content

Commit

Permalink
fix: test had filternames spelled wrong
Browse files Browse the repository at this point in the history
Signed-off-by: Sandor Szücs <[email protected]>
  • Loading branch information
szuecs committed Oct 19, 2023
1 parent f769033 commit c7bedd1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions filters/scheduler/fifo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -403,8 +403,8 @@ func TestFifo(t *testing.T) {
wantOkRate: 1.0,
},
{
name: "fifoWithbody simple ok",
filter: `fifoWithbody(3, 5, "1s")`,
name: "fifoWithBody simple ok",
filter: `fifoWithBody(3, 5, "1s")`,
freq: 20,
per: 100 * time.Millisecond,
backendTime: 1 * time.Millisecond,
Expand All @@ -421,8 +421,8 @@ func TestFifo(t *testing.T) {
wantOkRate: 0,
},
{
name: "fifoWithbody simple client canceled",
filter: `fifoWithbody(3, 5, "1s")`,
name: "fifoWithBody simple client canceled",
filter: `fifoWithBody(3, 5, "1s")`,
freq: 20,
per: 100 * time.Millisecond,
backendTime: 1 * time.Millisecond,
Expand All @@ -439,8 +439,8 @@ func TestFifo(t *testing.T) {
wantOkRate: 0.005,
},
{
name: "fifoWithbody with reaching max concurrency and queue timeouts",
filter: `fifoWithbody(3, 5, "10ms")`,
name: "fifoWithBody with reaching max concurrency and queue timeouts",
filter: `fifoWithBody(3, 5, "10ms")`,
freq: 20,
per: 10 * time.Millisecond,
backendTime: 11 * time.Millisecond,
Expand Down

0 comments on commit c7bedd1

Please sign in to comment.