diff --git a/examples/nft-nd-nns/tests/nonnative_name_service_test.go b/examples/nft-nd-nns/nns_test.go similarity index 99% rename from examples/nft-nd-nns/tests/nonnative_name_service_test.go rename to examples/nft-nd-nns/nns_test.go index ecd602786..45219a0e8 100644 --- a/examples/nft-nd-nns/tests/nonnative_name_service_test.go +++ b/examples/nft-nd-nns/nns_test.go @@ -1,4 +1,4 @@ -package tests +package nns_test import ( "strings" @@ -17,7 +17,7 @@ import ( func newNSClient(t *testing.T) *neotest.ContractInvoker { bc, acc := chain.NewSingle(t) e := neotest.NewExecutor(t, bc, acc, acc) - c := neotest.CompileFile(t, e.CommitteeHash, "..", "../nns.yml") + c := neotest.CompileFile(t, e.CommitteeHash, ".", "nns.yml") e.DeployContract(t, c, nil) return e.CommitteeInvoker(c.Hash)