Skip to content

Commit

Permalink
filepath not sprint
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Abro <AustinAbro321@gmail.com>
  • Loading branch information
AustinAbro321 committed Sep 20, 2024
1 parent e4ed64c commit bd27215
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/internal/bigbang/bigbang_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ package bigbang
import (
"context"
"errors"
"fmt"
"net/http"
"net/http/httptest"
"os"
Expand Down Expand Up @@ -520,7 +519,7 @@ func TestCreate(t *testing.T) {
for i, c := range tt.pkg.Components {
for j, m := range c.Manifests {
for k, f := range m.Files {
tt.pkg.Components[i].Manifests[j].Files[k] = fmt.Sprintf("%s/%s", tempDir, f)
tt.pkg.Components[i].Manifests[j].Files[k] = filepath.Join(tempDir, f)
}
}
}
Expand Down

0 comments on commit bd27215

Please sign in to comment.