Skip to content

Commit

Permalink
Fix file parser test
Browse files Browse the repository at this point in the history
  • Loading branch information
claabs committed Feb 20, 2022
1 parent 1f430f7 commit 604682f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/file-parser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ describe('UbisoftFileParser', () => {
const fileParser = new UbisoftFileParser();

it('should parse a user.dat file', () => {
const data = readFileSync(`${__dirname}/sample-files/new-user.dat`);
const data = readFileSync(`${__dirname}/sample-files/user.dat`);
const result = fileParser.parseUserDat(data);
expect(result.toJSON()).toMatchObject({
prod: {
Expand Down

0 comments on commit 604682f

Please sign in to comment.