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

Commit

Permalink
fix typos in util_test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lzpap committed Jan 30, 2020
1 parent dd190e1 commit feef769
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test/commands/extended/utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
unicode_literals

from unittest import TestCase

from iota.commands.extended.utils import iter_used_addresses

from iota import MockAdapter
from iota.crypto.types import Seed
from test import mock
Expand Down Expand Up @@ -41,9 +39,9 @@ def get_all_used_addresses(self, start=0):
return [address for address, _
in iter_used_addresses(self.adapter, self.seed, start)]

def test_fist_address_is_not_used(self):
def test_first_address_is_not_used(self):
"""
The very fist address is not used. No address is returned.
The very first address is not used. No address is returned.
"""
# Address 0
self.seed_unused_address()
Expand Down Expand Up @@ -149,7 +147,7 @@ def test_spent_from_is_considered_used(self):

def test_start_parameter_is_given(self):
"""
The correct address is returned if a start parameter is given
The correct address is returned if a start parameter is given.
"""
# Address 1
self.adapter.seed_response('findTransactions', {
Expand Down

0 comments on commit feef769

Please sign in to comment.