Skip to content

Commit

Permalink
fix find/replace bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatskaari committed Nov 14, 2023
1 parent 268b661 commit 4b3b953
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/stamp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -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"
Expand Down

0 comments on commit 4b3b953

Please sign in to comment.