Skip to content

Commit

Permalink
[CLEANUP]
Browse files Browse the repository at this point in the history
Update test script number 7.Simple Select with column alias
  • Loading branch information
Daniel Sumardi committed Sep 6, 2019
1 parent 56e21ac commit 445b2b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ describe('Query String Builder', function () {
.addSelect('age')
.setFirstTable('user')
.generateQuery();
expect(queryString).to.equal(`SELECT user."firstName" AS user_first_name, lastName, age FROM user;`);
expect(queryString).to.equal(`SELECT user."firstName" AS "user_first_name", lastName, age FROM user;`);
});

it('Test 8. Test with multiple where', function () {
Expand Down

0 comments on commit 445b2b8

Please sign in to comment.