Skip to content

Commit

Permalink
fix unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-zehentleitner committed May 12, 2024
1 parent 0b2a1dd commit 35155c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittest_binance_websocket_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ def test_exception_streamisrestarting(self):

def test_exception_maximumsubscriptionsexceeded(self):
with self.assertRaises(MaximumSubscriptionsExceeded):
raise MaximumSubscriptionsExceeded(max_subscriptions=1024)
raise MaximumSubscriptionsExceeded(exchange="binance.com", max_subscriptions_per_stream=1024)

def test_live_run(self):
self.__class__.ubwa.get_active_stream_list()
Expand Down

0 comments on commit 35155c8

Please sign in to comment.