trades_append should use dataframe, not lists

This commit is contained in:
Matthias
2023-08-17 18:06:25 +02:00
parent 780f238904
commit 6fc1ee9831
6 changed files with 11 additions and 11 deletions

View File

@@ -291,7 +291,7 @@ def test_datahandler_ohlcv_append(datahandler, testdatadir, ):
def test_datahandler_trades_append(datahandler, testdatadir):
dh = get_datahandler(testdatadir, datahandler)
with pytest.raises(NotImplementedError):
dh.trades_append('UNITTEST/ETH', [])
dh.trades_append('UNITTEST/ETH', DataFrame())
def test_hdf5datahandler_trades_get_pairs(testdatadir):