Skip to content

Commit

Permalink
missed a few
Browse files Browse the repository at this point in the history
  • Loading branch information
rboyer committed Nov 8, 2023
1 parent f8a40d8 commit 2e81c82
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test-integ/topoutil/asserter_blankspace.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ func (a *Asserter) CheckBlankspaceNameTrafficSplitViaHTTP(
expect map[string]int,
epsilon int,
) {
t.Helper()

got := make(map[string]int)
a.checkBlankspaceNameViaHTTPWithCallback(t, service, upstream, useHTTP2, path, 100, func(_ *retry.R, name string) {
got[name]++
Expand Down Expand Up @@ -128,6 +130,8 @@ func (a *Asserter) CheckBlankspaceNameTrafficSplitViaTCP(
expect map[string]int,
epsilon int,
) {
t.Helper()

got := make(map[string]int)
a.checkBlankspaceNameViaTCPWithCallback(t, service, upstream, 100, func(_ *retry.R, name string) {
got[name]++
Expand Down Expand Up @@ -192,6 +196,8 @@ func (a *Asserter) CheckBlankspaceNameTrafficSplitViaGRPC(
expect map[string]int,
epsilon int,
) {
t.Helper()

got := make(map[string]int)
a.checkBlankspaceNameViaGRPCWithCallback(t, service, upstream, 100, func(_ *retry.R, name string) {
got[name]++
Expand Down

0 comments on commit 2e81c82

Please sign in to comment.