"go test" in complaining. it was not before. made it happy.
parent
5e021d190a
commit
5996141025
|
@ -30,7 +30,7 @@ func TestNewCopyingRouter(t *testing.T) {
|
|||
}
|
||||
|
||||
|
||||
message := fmt.Sprint("%x", randomness.Int63n(9999999999))
|
||||
message := fmt.Sprintf("%x", randomness.Int63n(9999999999))
|
||||
|
||||
context := make(map[string]interface{})
|
||||
limit := randomness.Int63n(30)
|
||||
|
|
|
@ -21,7 +21,7 @@ func TestNewDiscardingRouter(t *testing.T) {
|
|||
}
|
||||
|
||||
|
||||
message := fmt.Sprint("%x", randomness.Int63n(9999999999))
|
||||
message := fmt.Sprintf("%x", randomness.Int63n(9999999999))
|
||||
|
||||
context := make(map[string]interface{})
|
||||
limit := randomness.Int63n(30)
|
||||
|
|
|
@ -23,7 +23,7 @@ func TestNewFanoutRouter(t *testing.T) {
|
|||
}
|
||||
|
||||
|
||||
message := fmt.Sprint("%x", randomness.Int63n(9999999999))
|
||||
message := fmt.Sprintf("%x", randomness.Int63n(9999999999))
|
||||
|
||||
context := make(map[string]interface{})
|
||||
limit := randomness.Int63n(30)
|
||||
|
|
|
@ -23,7 +23,7 @@ func TestFilteringRouterJustCreated(t *testing.T) {
|
|||
}
|
||||
|
||||
|
||||
message := fmt.Sprint("%x", randomness.Int63n(9999999999))
|
||||
message := fmt.Sprintf("%x", randomness.Int63n(9999999999))
|
||||
|
||||
context := make(map[string]interface{})
|
||||
limit := randomness.Int63n(30)
|
||||
|
|
Loading…
Reference in New Issue