We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d2d9e7 commit 97314b5Copy full SHA for 97314b5
1 file changed
core_engine/main.go
@@ -50,7 +50,7 @@ func main() {
50
// * All tests will run concurrently!
51
for _, conf := range configs {
52
wg.Add(1)
53
- go func(c Test-Config) {
+ go func(c TestConfig) {
54
defer wg.Done()
55
56
tmpFile, err := os.CreateTemp("", "xray-test-*.json")
@@ -101,7 +101,7 @@ func main() {
101
102
// * Killing the process is more reliable than waiting for it to exit.
103
cmd.Process.Kill()
104
- cmd.Wait() /
+ cmd.Wait()
105
106
results <- TestResult{Tag: c.Tag, Ping: ping, Status: status}
107
}(conf)
0 commit comments