Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit e8a432c

Browse files
committed
PEP8
1 parent 85845f1 commit e8a432c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ethereum/tests/test_solidity.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
def bytecode_is_generated(cinfo, cname):
1818
return 'code' in cinfo[cname] and len(cinfo[cname]['code']) > 10
1919

20+
2021
@pytest.mark.skipif(not SOLIDITY_AVAILABLE, reason='solc compiler not available')
2122
def test_library_from_file():
2223
state = tester.state()
@@ -249,6 +250,7 @@ def test_abi_contract():
249250
assert contract.mul2(2) == 4
250251
assert contract.mul2(-2) == -4
251252

253+
252254
@pytest.mark.skipif(not SOLIDITY_AVAILABLE, reason='solc compiler not available')
253255
def test_extra_args():
254256
src = """

0 commit comments

Comments
 (0)