Skip to content
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.

Commit

Permalink
fix: sync package alias
Browse files Browse the repository at this point in the history
  • Loading branch information
kneal committed Jan 11, 2021
1 parent 9f03a31 commit 2d5a35d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions template/native/render_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"io/ioutil"
"testing"

goyaml "github.com/goccy/go-yaml"
yml "github.com/goccy/go-yaml"
"github.com/google/go-cmp/cmp"

"github.com/go-vela/types/raw"
Expand Down Expand Up @@ -45,7 +45,7 @@ func TestNative_Render(t *testing.T) {
t.Error(err)
}
b := &yaml.Build{}
err = goyaml.Unmarshal(sFile, b)
err = yml.Unmarshal(sFile, b)
if err != nil {
t.Error(err)
}
Expand All @@ -70,7 +70,7 @@ func TestNative_Render(t *testing.T) {
t.Error(err)
}
w := &yaml.Build{}
err = goyaml.Unmarshal(wFile, w)
err = yml.Unmarshal(wFile, w)
if err != nil {
t.Error(err)
}
Expand Down

0 comments on commit 2d5a35d

Please sign in to comment.