From 4b3b9536a04b90a80487658af916b09907d0670b Mon Sep 17 00:00:00 2001 From: Jon Poole Date: Tue, 14 Nov 2023 13:50:09 +0000 Subject: [PATCH] fix find/replace bug --- src/core/stamp_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/stamp_test.go b/src/core/stamp_test.go index 562228c1e5..1747b92309 100644 --- a/src/core/stamp_test.go +++ b/src/core/stamp_test.go @@ -10,7 +10,7 @@ func TestStampFile(t *testing.T) { config := DefaultConfiguration() config.Licences.Accept = []string{"bsd-2-clause"} t1 := NewBuildTarget(ParseBuildLabel("//src/core:core", "")) - t2 := NewBuildTarget(ParseBuildLabel("//src/wdFS:wdFS", "")) + t2 := NewBuildTarget(ParseBuildLabel("//src/fs:fs", "")) t3 := NewBuildTarget(ParseBuildLabel("//third_party/go:errors", "")) t1.AddLabel("go") t3.AddLabel("go_get:github.com/pkg/errors") @@ -28,7 +28,7 @@ func TestStampFile(t *testing.T) { "go" ] }, - "//src/wdFS:wdFS": {}, + "//src/fs:fs": {}, "//third_party/go:errors": { "labels": [ "go_get:github.com/pkg/errors"