From 67ef10f20741f3cf036fecf9704329e46305db0b Mon Sep 17 00:00:00 2001 From: Alessandro Arzilli Date: Fri, 14 Mar 2025 18:36:12 +0100 Subject: [PATCH] service/test: fix compile error in tests (#3949) Due to a merge conflict the tests in service/test are not compiling. --- service/test/integration2_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/test/integration2_test.go b/service/test/integration2_test.go index 224d2d5a..9ef131a3 100644 --- a/service/test/integration2_test.go +++ b/service/test/integration2_test.go @@ -3308,7 +3308,7 @@ func TestFollowExecFindLocation(t *testing.T) { if buildMode == "pie" { buildFlags |= protest.BuildModePIE } - childFixture := protest.BuildFixture("spawnchild", buildFlags) + childFixture := protest.BuildFixture(t, "spawnchild", buildFlags) withTestClient2Extended("spawn", t, 0, [3]string{}, []string{"spawn2", childFixture.Path}, func(c service.Client, fixture protest.Fixture) { assertNoError(c.FollowExec(true, ""), t, "FollowExec")