cleanup whitespace

This commit is contained in:
Gregg Van Hove and Tim Jarratt
2013-10-01 16:30:17 -07:00
parent cb8ba74937
commit 37a3135d6a

View File

@@ -27,7 +27,7 @@ describe("Env", function() {
expect(fakeReporter.jasmineStarted).toHaveBeenCalled(); expect(fakeReporter.jasmineStarted).toHaveBeenCalled();
}); });
}); });
it('removes all spies when env is executed', function(done) { it('removes all spies when env is executed', function(done) {
originalFoo = function() {}, originalFoo = function() {},
testObj = { testObj = {
@@ -85,11 +85,11 @@ describe("Env", function() {
var subject = { spiedFunc: function() { originalFunctionWasCalled = true; } }; var subject = { spiedFunc: function() { originalFunctionWasCalled = true; } };
originalFunc = subject.spiedFunc; originalFunc = subject.spiedFunc;
var spy = env.spyOn(subject, 'spiedFunc'); var spy = env.spyOn(subject, 'spiedFunc');
expect(subject.spiedFunc).toEqual(spy); expect(subject.spiedFunc).toEqual(spy);
expect(subject.spiedFunc.calls.any()).toEqual(false); expect(subject.spiedFunc.calls.any()).toEqual(false);
expect(subject.spiedFunc.calls.count()).toEqual(0); expect(subject.spiedFunc.calls.count()).toEqual(0);