Skip to content
This repository has been archived by the owner on Sep 10, 2019. It is now read-only.

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
localhuman committed Jan 27, 2018
1 parent af9bbe6 commit 2723961
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/test_numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,6 @@ def test_initialization_invalid_length(self):
with self.assertRaises(Exception):
u1 = UInt160(b'12345')


def test_parse(self):
string = '0xd7678dd97c000be3f33e9362e673101bac4ca654'
uint160 = UInt160.ParseString(string)
Expand All @@ -465,7 +464,6 @@ def test_parse(self):
uint160 = UInt160.ParseString(string)



class UInt256TestCase(TestCase):
def test_initialization(self):
u0 = UInt256()
Expand All @@ -481,7 +479,6 @@ def test_initialization_invalid(self):
with self.assertRaises(Exception):
u1 = UInt256('12345678901234567890123456789012')


def test_parse(self):
string = '0xcedb5c4e24b1f6fc5b239f2d1049c3229ad5ed05293c696b3740dc236c3f41b4'
uint256 = UInt256.ParseString(string)
Expand All @@ -496,4 +493,3 @@ def test_parse(self):
string = '9410bd44beb7d6febc9278b028158af2781fcfb40cf2c6067b3525d24eff19f'
with self.assertRaises(Exception) as context:
uint256 = UInt256.ParseString(string)

0 comments on commit 2723961

Please sign in to comment.