Skip to content

Commit

Permalink
preprocess error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
osteensco committed Sep 22, 2024
1 parent 2cc0923 commit 8572333
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion runner/engine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,10 @@ func TestRebuildWhenRunCmdUsingDLV(t *testing.T) {
dlvPort, f := GetPort()
f()
engine.config.Build.FullBin = fmt.Sprintf("dlv exec --accept-multiclient --log --headless --continue --listen :%d --api-version 2 ./tmp/main", dlvPort)
_ = engine.config.preprocess()
err = engine.config.preprocess()
if err != nil {
t.Fatal("config preprocess fialed! - Error: ", err)
}
go func() {
engine.Run()
}()
Expand Down

0 comments on commit 8572333

Please sign in to comment.