Skip to content

Commit

Permalink
fix: use correct test function (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
evenstensberg committed May 12, 2017
1 parent 524f035 commit 3464d9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/transformations/utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ var a = { plugs: [] }
expect(j(literal).toSource()).toMatchSnapshot();
});
it('should create boolean', () => {
const literal = utils.createLiteral(j, 'true');
const literal = utils.createIdentifierOrLiteral(j, 'true');
expect(j(literal).toSource()).toMatchSnapshot();
});
});
Expand Down

0 comments on commit 3464d9e

Please sign in to comment.