Skip to content

Commit

Permalink
fix to restore ok symbol in list tests
Browse files Browse the repository at this point in the history
  • Loading branch information
outsideris committed Oct 24, 2018
1 parent 4027e4f commit ff7cef8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/reporters/list.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ describe('List reporter', function() {
Base.cursor = cachedCursor;
});
it('should write expected symbol, title and duration to the console', function() {
var cachedSymbols = Base.symbols;
var cachedOkSymbol = Base.symbols.ok;
var expectedOkSymbol = 'OK';
Base.symbols.ok = expectedOkSymbol;
var cachedCursor = Base.cursor;
Expand All @@ -101,7 +101,7 @@ describe('List reporter', function() {
);

Base.cursor = cachedCursor;
Base.symbols = cachedSymbols;
Base.symbols.ok = cachedOkSymbol;
});
});
describe('on fail', function() {
Expand Down

0 comments on commit ff7cef8

Please sign in to comment.