Skip to content

Commit

Permalink
pascal case class name.
Browse files Browse the repository at this point in the history
added missing semicolon.
  • Loading branch information
danmarshall committed Aug 26, 2016
1 parent f66c83b commit 0d1d347
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spec/helpers/ajax-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ export class MockXMLHttpRequest {
}
}

export class MockXMLHttpRequest_InternetExplorer extends MockXMLHttpRequest {
export class MockXMLHttpRequestInternetExplorer extends MockXMLHttpRequest {
constructor() {
super();
}
Expand All @@ -249,7 +249,7 @@ export class MockXMLHttpRequest_InternetExplorer extends MockXMLHttpRequest {

protected defaultResponseValue() {
if (this.status == 204) {
this.mockHttp204()
this.mockHttp204();
return;
}
return super.defaultResponseValue();
Expand Down
4 changes: 2 additions & 2 deletions spec/observables/dom/ajax-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {expect} from 'chai';
import * as sinon from 'sinon';
import * as Rx from '../../../dist/cjs/Rx';
import {root} from '../../../dist/cjs/util/root';
import {MockXMLHttpRequest, MockXMLHttpRequest_InternetExplorer} from '../../helpers/ajax-helper';
import {MockXMLHttpRequest, MockXMLHttpRequestInternetExplorer} from '../../helpers/ajax-helper';

declare const global: any;

Expand Down Expand Up @@ -568,7 +568,7 @@ describe('Observable.ajax', () => {
let result: Rx.AjaxResponse;
let complete = false;

root.XMLHttpRequest = MockXMLHttpRequest_InternetExplorer;
root.XMLHttpRequest = MockXMLHttpRequestInternetExplorer;

Rx.Observable
.ajax.post('/flibbertyJibbet', expected)
Expand Down

0 comments on commit 0d1d347

Please sign in to comment.