compiler: remove unused testPrintHash from test code
This commit is contained in:
parent
cfc067dd24
commit
73ecbbb7c6
1 changed files with 11 additions and 20 deletions
|
@ -33,26 +33,17 @@ import (
|
||||||
|
|
||||||
func TestContractHashes(t *testing.T) {
|
func TestContractHashes(t *testing.T) {
|
||||||
cs := native.NewContracts(true, map[string][]uint32{})
|
cs := native.NewContracts(true, map[string][]uint32{})
|
||||||
require.Equal(t, []byte(neo.Hash), cs.NEO.Hash.BytesBE())
|
require.Equalf(t, []byte(neo.Hash), cs.NEO.Hash.BytesBE(), "%q", string(cs.NEO.Hash.BytesBE()))
|
||||||
require.Equal(t, []byte(gas.Hash), cs.GAS.Hash.BytesBE())
|
require.Equalf(t, []byte(gas.Hash), cs.GAS.Hash.BytesBE(), "%q", string(cs.GAS.Hash.BytesBE()))
|
||||||
require.Equal(t, []byte(oracle.Hash), cs.Oracle.Hash.BytesBE())
|
require.Equalf(t, []byte(oracle.Hash), cs.Oracle.Hash.BytesBE(), "%q", string(cs.Oracle.Hash.BytesBE()))
|
||||||
require.Equal(t, []byte(roles.Hash), cs.Designate.Hash.BytesBE())
|
require.Equalf(t, []byte(roles.Hash), cs.Designate.Hash.BytesBE(), "%q", string(cs.Designate.Hash.BytesBE()))
|
||||||
require.Equal(t, []byte(policy.Hash), cs.Policy.Hash.BytesBE())
|
require.Equalf(t, []byte(policy.Hash), cs.Policy.Hash.BytesBE(), "%q", string(cs.Policy.Hash.BytesBE()))
|
||||||
require.Equal(t, []byte(nameservice.Hash), cs.NameService.Hash.BytesBE())
|
require.Equalf(t, []byte(nameservice.Hash), cs.NameService.Hash.BytesBE(), "%q", string(cs.NameService.Hash.BytesBE()))
|
||||||
require.Equal(t, []byte(ledger.Hash), cs.Ledger.Hash.BytesBE())
|
require.Equalf(t, []byte(ledger.Hash), cs.Ledger.Hash.BytesBE(), "%q", string(cs.Ledger.Hash.BytesBE()))
|
||||||
require.Equal(t, []byte(management.Hash), cs.Management.Hash.BytesBE())
|
require.Equalf(t, []byte(management.Hash), cs.Management.Hash.BytesBE(), "%q", string(cs.Management.Hash.BytesBE()))
|
||||||
require.Equal(t, []byte(notary.Hash), cs.Notary.Hash.BytesBE())
|
require.Equalf(t, []byte(notary.Hash), cs.Notary.Hash.BytesBE(), "%q", string(cs.Notary.Hash.BytesBE()))
|
||||||
require.Equal(t, []byte(crypto.Hash), cs.Crypto.Hash.BytesBE())
|
require.Equalf(t, []byte(crypto.Hash), cs.Crypto.Hash.BytesBE(), "%q", string(cs.Crypto.Hash.BytesBE()))
|
||||||
require.Equal(t, []byte(std.Hash), cs.Std.Hash.BytesBE())
|
require.Equalf(t, []byte(std.Hash), cs.Std.Hash.BytesBE(), "%q", string(cs.Std.Hash.BytesBE()))
|
||||||
}
|
|
||||||
|
|
||||||
// testPrintHash is a helper for updating contract hashes.
|
|
||||||
func testPrintHash(u util.Uint160) {
|
|
||||||
fmt.Print(`"`)
|
|
||||||
for _, b := range u.BytesBE() {
|
|
||||||
fmt.Printf("\\x%02x", b)
|
|
||||||
}
|
|
||||||
fmt.Println(`"`)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestContractParameterTypes(t *testing.T) {
|
func TestContractParameterTypes(t *testing.T) {
|
||||||
|
|
Loading…
Reference in a new issue