diff --git a/tests/unit/pipes.spec.js b/tests/unit/pipes.spec.js index 95104cce..e1f40cb1 100644 --- a/tests/unit/pipes.spec.js +++ b/tests/unit/pipes.spec.js @@ -85,12 +85,12 @@ describe('Pipes', () => { beforeEach(() => { unmarked = 'test\n'; - marked = '
test
\n'; + marked = 'test
\n'; pipe = new MarkedPipe(); }); describe('MarkedPipe transform', () => { - it('should escpae pointer', () => { + it('should wrap in markdown span', () => { var val = pipe.transform(unmarked); val.should.be.equal(marked); });