Skip to content

Commit 97314b5

Browse files
Add files via upload
1 parent 2d2d9e7 commit 97314b5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core_engine/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func main() {
5050
// * All tests will run concurrently!
5151
for _, conf := range configs {
5252
wg.Add(1)
53-
go func(c Test-Config) {
53+
go func(c TestConfig) {
5454
defer wg.Done()
5555

5656
tmpFile, err := os.CreateTemp("", "xray-test-*.json")
@@ -101,7 +101,7 @@ func main() {
101101

102102
// * Killing the process is more reliable than waiting for it to exit.
103103
cmd.Process.Kill()
104-
cmd.Wait() /
104+
cmd.Wait()
105105

106106
results <- TestResult{Tag: c.Tag, Ping: ping, Status: status}
107107
}(conf)

0 commit comments

Comments
 (0)