Skip to content

Commit

Permalink
fix: extra trailing chars in test
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielFGray committed Jun 27, 2024
1 parent f238b09 commit c3ea620
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2472,7 +2472,7 @@ t('Supports arrays of fragments', async() => {
t("Joins fragments with a separator", () => {
const fs = [sql`a = ${1}`, sql`b = ${"test"}`]
return [
sql`select * from t where ${ sql.join(sql` and `, fs) }; `.describe().string,
sql`select * from t where ${ sql.join(sql` and `, fs) }`.describe().string,
'select * from t where a = $1 and b = $2'
]
});
Expand Down

0 comments on commit c3ea620

Please sign in to comment.