[Mod] WebsocketClient改名为WebSocketClient

This commit is contained in:
nanoric 2018-10-07 03:38:36 -04:00
parent 4af7be3e41
commit 142a40652d
3 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ import unittest
# noinspection PyUnresolvedReferences
from restful.RestfulClientTest import *
from restful.WebSocketClientTest import *
if __name__ == "__main__":
unittest.main()

View File

@ -3,7 +3,7 @@ import json
import unittest
from Promise import Promise
from vnpy.restful.WebsocketClient import WebsocketClient
from vnpy.restful.WebSocketClient import WebsocketClient
class TestWebsocketClient(WebsocketClient):