Skip to content

Commit 13d81eb

Browse files
committed
Use ETH on kraken to ensure enough quotes
1 parent 55973c0 commit 13d81eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_feeds.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
(100, {'btcusdt.binance', 'ethusdt.binance'}),
2626
2727
# kraken
28-
(20, {'xbteur.kraken', 'xbtusd.kraken'}),
28+
(20, {'ethusdt.kraken', 'xbtusd.kraken'}),
2929
3030
# binance + kraken
31-
(200, {'btcusdt.binance', 'xbtusd.kraken'}),
31+
(100, {'btcusdt.binance', 'xbtusd.kraken'}),
3232
],
3333
ids=lambda param: f'quotes={param[0]}@fqsns={param[1]}',
3434
)
@@ -96,7 +96,7 @@ async def main():
9696
assert quote['last'] == flume.first_quote['last']
9797

9898
cntr = Counter()
99-
with trio.fail_after(5):
99+
with trio.fail_after(6):
100100
async for quotes in stream:
101101
for fqsn, quote in quotes.items():
102102
cntr[fqsn] += 1

0 commit comments

Comments
 (0)