1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-12-26 12:05:35 -05:00

fix test break

This commit is contained in:
Darien Raymond
2019-02-10 15:26:43 +01:00
parent 98950d5ada
commit 5e6d0f7c71
2 changed files with 2 additions and 5 deletions

View File

@@ -36,9 +36,9 @@ func TestNormalizeEnvName(t *testing.T) {
}
func TestEnvFlag(t *testing.T) {
if v := EnvFlag{
if v := (EnvFlag{
Name: "xxxxx.y",
}.GetValueAsInt(10); v != 10 {
}.GetValueAsInt(10)); v != 10 {
t.Error("env value: ", v)
}
}