From cb59e23cd436d1b4d9e879de7c32bed89eefeb87 Mon Sep 17 00:00:00 2001 From: "Frederick F. Kautz IV" Date: Sun, 4 Apr 2021 20:00:22 -0700 Subject: [PATCH] fix build break Signed-off-by: Frederick F. Kautz IV --- dagger/store_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dagger/store_test.go b/dagger/store_test.go index 4c1dba55..388056c4 100644 --- a/dagger/store_test.go +++ b/dagger/store_test.go @@ -105,7 +105,7 @@ func TestStoreLookupByPath(t *testing.T) { otherSt := &DeploymentState{ Name: "test2", } - require.NoError(t, otherSt.AddInput("foo", DirInput("/test/anotherpath", []string{}))) + require.NoError(t, otherSt.SetInput("foo", DirInput("/test/anotherpath", []string{}))) require.NoError(t, store.CreateDeployment(ctx, otherSt)) // Lookup by path should return both deployments