diff --git a/spec/core/ExpectationFilterChainSpec.js b/spec/core/ExpectationFilterChainSpec.js index 81b3cfc4..532af0c5 100644 --- a/spec/core/ExpectationFilterChainSpec.js +++ b/spec/core/ExpectationFilterChainSpec.js @@ -10,7 +10,6 @@ describe('ExpectationFilterChain', function() { added.modifyFailureMessage(); expect(first).toHaveBeenCalled(); - debugger; added.selectComparisonFunc(); expect(second).toHaveBeenCalled(); }); @@ -19,7 +18,6 @@ describe('ExpectationFilterChain', function() { var orig = new jasmineUnderTest.ExpectationFilterChain({}), f = jasmine.createSpy('f'); - orig.addFilter({selectComparisonFunc: f}); orig.selectComparisonFunc(); @@ -96,7 +94,6 @@ describe('ExpectationFilterChain', function() { .addFilter({modifyFailureMessage: third}), result; - debugger; result = chain.modifyFailureMessage('original'); expect(first).toHaveBeenCalledWith('original');