Fixing test after getid to negotiate rename

This commit is contained in:
moozzyk 2017-01-25 09:32:26 -08:00
parent 9eb42cce2d
commit 3ad8efb4ab
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ describe("Connection", () => {
let options: ISignalROptions = {
httpClient: <IHttpClient>{
get(url: string): Promise<string> {
if (url.indexOf("/getid") >= 0) {
if (url.indexOf("/negotiate") >= 0) {
return Promise.reject("error");
}
return Promise.resolve("");