From 379ded6832d25ada47519f979c43c05daaf4d17c Mon Sep 17 00:00:00 2001 From: Jan Korf Date: Sat, 5 Feb 2022 20:29:57 +0100 Subject: [PATCH] Fixed tests --- CryptoExchange.Net.UnitTests/SymbolOrderBookTests.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CryptoExchange.Net.UnitTests/SymbolOrderBookTests.cs b/CryptoExchange.Net.UnitTests/SymbolOrderBookTests.cs index d28eeb3..7f56fe6 100644 --- a/CryptoExchange.Net.UnitTests/SymbolOrderBookTests.cs +++ b/CryptoExchange.Net.UnitTests/SymbolOrderBookTests.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Threading; using System.Threading.Tasks; using CryptoExchange.Net.Interfaces; using CryptoExchange.Net.Objects; @@ -22,12 +23,12 @@ namespace CryptoExchange.Net.UnitTests public override void Dispose() {} - protected override Task> DoResyncAsync() + protected override Task> DoResyncAsync(CancellationToken ct) { throw new NotImplementedException(); } - protected override Task> DoStartAsync() + protected override Task> DoStartAsync(CancellationToken ct) { throw new NotImplementedException(); }