Skip to content

Commit

Permalink
Fix unlink file path in resolvergen test
Browse files Browse the repository at this point in the history
  • Loading branch information
sonatard committed Mar 1, 2020
1 parent b788cce commit 3a61dc0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions plugin/resolvergen/resolver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
)

func TestLayoutSingleFile(t *testing.T) {
_ = syscall.Unlink("testdata/out/singlefile/resolver.go")
_ = syscall.Unlink("testdata/singlefile/out/resolver.go")

cfg, err := config.LoadConfig("testdata/singlefile/gqlgen.yml")
require.NoError(t, err)
Expand All @@ -31,7 +31,7 @@ func TestLayoutSingleFile(t *testing.T) {
}

func TestLayoutFollowSchema(t *testing.T) {
_ = syscall.Unlink("testdata/out/followschema/resolver.go")
_ = syscall.Unlink("testdata/followschema/out/resolver.go")

cfg, err := config.LoadConfig("testdata/followschema/gqlgen.yml")
require.NoError(t, err)
Expand Down Expand Up @@ -63,7 +63,8 @@ func assertNoErrors(t *testing.T, pkg string) {
packages.NeedCompiledGoFiles |
packages.NeedImports |
packages.NeedTypes |
packages.NeedTypesSizes}, pkg)
packages.NeedTypesSizes,
}, pkg)
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 3a61dc0

Please sign in to comment.