mirror of https://github.com/v2ray/v2ray-core
chore: unnecessary use of fmt.Sprint
Signed-off-by: guoguangwu <guoguangwu@magic-shield.com>pull/3227/head
parent
d80440f3d5
commit
4fb830e9c0
|
@ -388,7 +388,7 @@ func TestStatsChannelConcurrency(t *testing.T) {
|
||||||
if ok {
|
if ok {
|
||||||
errCh <- fmt.Sprint("unexpected receiving: ", v)
|
errCh <- fmt.Sprint("unexpected receiving: ", v)
|
||||||
} else {
|
} else {
|
||||||
errCh <- fmt.Sprint("unexpected closing of channel")
|
errCh <- "unexpected closing of channel"
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue