Skip to content

Commit

Permalink
updated find option by strike test
Browse files Browse the repository at this point in the history
  • Loading branch information
jmfernandes committed Oct 10, 2020
1 parent 158c9f1 commit f4ce26d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_github_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit f4ce26d

Please sign in to comment.