diff options
author | Kushagra Sharma <ksharm01@gmail.com> | 2019-03-18 20:29:26 +0800 |
---|---|---|
committer | Guillaume Ballet <gballet@gmail.com> | 2019-03-18 20:29:26 +0800 |
commit | fb458280d1b0b90156745202677dabbc74187697 (patch) | |
tree | 725704c2a15abdd797da46d8023ccdbc1767a625 /common/compiler/solidity_test.go | |
parent | 47c03c0f8c32772b021ed182e71fccbe49bd0e99 (diff) | |
download | go-tangerine-fb458280d1b0b90156745202677dabbc74187697.tar go-tangerine-fb458280d1b0b90156745202677dabbc74187697.tar.gz go-tangerine-fb458280d1b0b90156745202677dabbc74187697.tar.bz2 go-tangerine-fb458280d1b0b90156745202677dabbc74187697.tar.lz go-tangerine-fb458280d1b0b90156745202677dabbc74187697.tar.xz go-tangerine-fb458280d1b0b90156745202677dabbc74187697.tar.zst go-tangerine-fb458280d1b0b90156745202677dabbc74187697.zip |
Modified Abigen to Support Vyper (#19120)
Diffstat (limited to 'common/compiler/solidity_test.go')
-rw-r--r-- | common/compiler/solidity_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/compiler/solidity_test.go b/common/compiler/solidity_test.go index cb954b720..6be2bda52 100644 --- a/common/compiler/solidity_test.go +++ b/common/compiler/solidity_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 The go-ethereum Authors +// Copyright 2019 The go-ethereum Authors // This file is part of the go-ethereum library. // // The go-ethereum library is free software: you can redistribute it and/or modify @@ -39,7 +39,7 @@ func skipWithoutSolc(t *testing.T) { } } -func TestCompiler(t *testing.T) { +func TestSolidityCompiler(t *testing.T) { skipWithoutSolc(t) contracts, err := CompileSolidityString("", testSource) @@ -67,7 +67,7 @@ func TestCompiler(t *testing.T) { } } -func TestCompileError(t *testing.T) { +func TestSolidityCompileError(t *testing.T) { skipWithoutSolc(t) contracts, err := CompileSolidityString("", testSource[4:]) |