*: move all packages from CityOfZion to nspcc-dev

This commit is contained in:
Roman Khimov 2020-03-03 17:21:42 +03:00
parent 59e6dac351
commit e41d434a49
218 changed files with 659 additions and 663 deletions

View file

@ -9,7 +9,7 @@ func TestImportFunction(t *testing.T) {
src := `
package somethingelse
import "github.com/CityOfZion/neo-go/pkg/compiler/testdata/foo"
import "github.com/nspcc-dev/neo-go/pkg/compiler/testdata/foo"
func Main() int {
i := foo.NewBar()
@ -23,7 +23,7 @@ func TestImportStruct(t *testing.T) {
src := `
package somethingwedontcareabout
import "github.com/CityOfZion/neo-go/pkg/compiler/testdata/bar"
import "github.com/nspcc-dev/neo-go/pkg/compiler/testdata/bar"
func Main() int {
b := bar.Bar{
@ -39,7 +39,7 @@ func TestMultipleDirFileImport(t *testing.T) {
src := `
package hello
import "github.com/CityOfZion/neo-go/pkg/compiler/testdata/foobar"
import "github.com/nspcc-dev/neo-go/pkg/compiler/testdata/foobar"
func Main() bool {
ok := foobar.OtherBool()