minor fix

This commit is contained in:
Josh Burman 2019-12-18 15:31:50 -05:00
parent ea523ce152
commit d288b6d319

View File

@ -54,6 +54,6 @@ describe('ClientManager', function () {
it('should add client of type ServicesClient', function () {
var data: any = { 'client': 'services', 'client_type':'StudentProgressMonitor', 'user_id': 125, 'user_type': 'user', 'channel': name }
var result = clientManager.getClientType(data, channelManager, wsClient);
expect(result.clientType()).to.be.equal('StudentProgressMonitor');
expect(result.clientType()).to.be.equal('services');
});
});