Skip to content

Commit 8ac28f4

Browse files
committed
Skipped test test_new_order_incorrect_limit_no_time_in_force
1 parent db02d68 commit 8ac28f4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@ def test_new_order_incorrect_limit_no_price(self, monkeypatch):
336336
quantity=amount)
337337
post_mock.assert_not_called()
338338

339+
@pytest.mark.skip("There is no more time_in_force parameter")
339340
def test_new_order_incorrect_limit_no_time_in_force(self, monkeypatch):
340341
post_mock = MagicMock()
341342
monkeypatch.setattr(self.client, '_post', post_mock)
@@ -480,7 +481,8 @@ def test_get_account_trade_list_with_end_time(self, monkeypatch):
480481
endTime=end_time.timestamp() * 1000
481482
)
482483

483-
def test_get_account_trade_list_with_start_and_end_times(self, monkeypatch):
484+
def test_get_account_trade_list_with_start_and_end_times(self,
485+
monkeypatch):
484486
get_mock = MagicMock()
485487
symbol = 'TEST'
486488
start_time = datetime(2019, 1, 1, 1, 1, 1)

0 commit comments

Comments
 (0)