Skip to content

Commit 7521f81

Browse files
author
abel
committed
(fix) Fix typos
1 parent f26f536 commit 7521f81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_composer_deprecation_warnings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def test_msg_withdraw_deprecation_warning(self):
5050
assert len(deprecation_warnings) == 1
5151
assert str(deprecation_warnings[0].message) == "This method is deprecated. Use msg_withdraw instead"
5252

53-
def teste_coin_deprecation_warning(self):
53+
def test_coin_deprecation_warning(self):
5454
composer = Composer(network=Network.devnet().string())
5555

5656
with warnings.catch_warnings(record=True) as all_warnings:
@@ -63,7 +63,7 @@ def teste_coin_deprecation_warning(self):
6363
assert len(deprecation_warnings) == 1
6464
assert str(deprecation_warnings[0].message) == "This method is deprecated. Use coin instead"
6565

66-
def teste_order_data_deprecation_warning(self):
66+
def test_order_data_deprecation_warning(self):
6767
composer = Composer(network=Network.devnet().string())
6868

6969
with warnings.catch_warnings(record=True) as all_warnings:

0 commit comments

Comments
 (0)