From 8ac28f4ead4867719285f435fc3eceadb68652ac Mon Sep 17 00:00:00 2001 From: Aliaksandr Sheliutsin Date: Tue, 23 Aug 2022 12:39:19 +0300 Subject: [PATCH] Skipped test test_new_order_incorrect_limit_no_time_in_force --- tests/test_client.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_client.py b/tests/test_client.py index 0b40b0b..8ad5105 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -336,6 +336,7 @@ def test_new_order_incorrect_limit_no_price(self, monkeypatch): quantity=amount) post_mock.assert_not_called() + @pytest.mark.skip("There is no more time_in_force parameter") def test_new_order_incorrect_limit_no_time_in_force(self, monkeypatch): post_mock = MagicMock() monkeypatch.setattr(self.client, '_post', post_mock) @@ -480,7 +481,8 @@ def test_get_account_trade_list_with_end_time(self, monkeypatch): endTime=end_time.timestamp() * 1000 ) - def test_get_account_trade_list_with_start_and_end_times(self, monkeypatch): + def test_get_account_trade_list_with_start_and_end_times(self, + monkeypatch): get_mock = MagicMock() symbol = 'TEST' start_time = datetime(2019, 1, 1, 1, 1, 1)