From f4ce26d992d4e4fe1ea87e4444fb78c3c7407c38 Mon Sep 17 00:00:00 2001 From: josh fernandes Date: Sat, 10 Oct 2020 09:22:28 -0700 Subject: [PATCH] updated find option by strike test --- tests/test_github_actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_github_actions.py b/tests/test_github_actions.py index fc3cfe7..381d479 100644 --- a/tests/test_github_actions.py +++ b/tests/test_github_actions.py @@ -423,7 +423,7 @@ def test_find_tradable_options(self): def test_find_options_by_strike(self): info = r.find_options_by_strike(self.symbol, self.strike) - assert (len(info) > 30) + assert (len(info) >= 24) info = r.find_options_by_strike(self.symbol, self.strike,'call') assert (info[0]['type'] == 'call') info = r.find_options_by_strike(self.symbol, self.strike, info='expiration_date')