Skip to content

Commit

Permalink
display assert description in json1 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lovasoa committed Aug 12, 2021
1 parent 9922c84 commit e178659
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_json1.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ exports.test = function(sql, assert) {
String(db.exec(
"SELECT " + sql.split(" = ")[0] + " AS val;"
)[0].values[0][0]),
String(sql.split(" = ")[1].replace(/'/g, ""))
String(sql.split(" = ")[1].replace(/'/g, "")),
sql
);
});
};
Expand Down

0 comments on commit e178659

Please sign in to comment.