Skip to content

Commit

Permalink
Update experiment.test.js
Browse files Browse the repository at this point in the history
  • Loading branch information
vHeemstra committed Jun 5, 2022
1 parent af1e3ff commit a13ed32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/experiment.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ describe('sync.js - single POT', () => {
// Check contents
const received = result[0][1];
const expected = readFileSync('test/examples/output_correct/text-domain-nl_NL.po');
console.log( 'received.length =', received.length );
console.log( 'expected.length =', expected.length );
console.log( 'received.length =', received.match('\r'), received.length );
console.log( 'expected.length =', expected.match('\r'), expected.length );
expect(received)
.toEqual(expected);
});
Expand Down

0 comments on commit a13ed32

Please sign in to comment.