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

Commit feef769

Browse files
committed
fix typos in util_test.py
1 parent dd190e1 commit feef769

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

test/commands/extended/utils_test.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
unicode_literals
44

55
from unittest import TestCase
6-
76
from iota.commands.extended.utils import iter_used_addresses
8-
97
from iota import MockAdapter
108
from iota.crypto.types import Seed
119
from test import mock
@@ -41,9 +39,9 @@ def get_all_used_addresses(self, start=0):
4139
return [address for address, _
4240
in iter_used_addresses(self.adapter, self.seed, start)]
4341

44-
def test_fist_address_is_not_used(self):
42+
def test_first_address_is_not_used(self):
4543
"""
46-
The very fist address is not used. No address is returned.
44+
The very first address is not used. No address is returned.
4745
"""
4846
# Address 0
4947
self.seed_unused_address()
@@ -149,7 +147,7 @@ def test_spent_from_is_considered_used(self):
149147

150148
def test_start_parameter_is_given(self):
151149
"""
152-
The correct address is returned if a start parameter is given
150+
The correct address is returned if a start parameter is given.
153151
"""
154152
# Address 1
155153
self.adapter.seed_response('findTransactions', {

0 commit comments

Comments
 (0)