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

Commit 06770cd

Browse files
committed
Nicer test function names for easier reading.
1 parent f45923f commit 06770cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/filters_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,21 +224,21 @@ def setUp(self):
224224
self.address_with_checksum = Address(self.tryte1 + self.checksum)
225225
self.address_with_bad_checksum = Address(self.tryte1 + b'DEADBEEF9')
226226

227-
def test_pass_checksumless_addy(self):
227+
def test_pass_no_checksum_addy(self):
228228
"""
229229
Incoming value is tryte in address form or Address object
230230
"""
231231
self.assertFilterPasses(self.tryte1)
232232
self.assertFilterPasses(self.address)
233233

234-
def test_pass_withchecksum_addy(self):
234+
def test_pass_with_checksum_addy(self):
235235
"""
236236
After passing through the filter an address with a checksum should
237237
return the address without
238238
"""
239239
self.assertFilterPasses(self.address_with_checksum, self.address)
240240

241-
def test_fail_badchecksum_addy(self):
241+
def test_fail_with_bad_checksum_addy(self):
242242
"""
243243
If they've got a bad checksum in their address we should probably tell
244244
them so they don't wonder why something works in one place and not another

0 commit comments

Comments
 (0)