Merge branch 'master' into engine

This commit is contained in:
Adrian Gallagher
2019-09-13 14:29:48 +10:00
13 changed files with 36 additions and 48 deletions

View File

@@ -577,6 +577,6 @@ func TestSetup(t *testing.T) {
w := WebsocketOrderbookLocal{}
w.Setup(1, true, true, true, true, "hi")
if w.obBufferLimit != 1 || !w.bufferEnabled || !w.sortBuffer || !w.sortBufferByUpdateIDs || !w.updateEntriesByID || w.exchangeName != "hi" {
t.Errorf("Setup incorrectly loaded %v", w)
t.Errorf("Setup incorrectly loaded %s", w.exchangeName)
}
}