Switched to gtest for unit testing

This commit is contained in:
emeric
2021-05-03 13:20:43 +02:00
parent 444d4af3c6
commit 67ce7151ff
20 changed files with 2131 additions and 1905 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ createQuery(Session& session,
query.join("track t ON t.release_id = r.id");
for (std::string_view keyword : keywords)
query.where("r.name LIKE ? ESCAPE '" ESCAPE_CHAR_STR "'").bind("%%" + escapeLikeKeyword(keyword) + "%%");
query.where("r.name LIKE ? ESCAPE '" ESCAPE_CHAR_STR "'").bind("%" + escapeLikeKeyword(keyword) + "%");
if (!clusterIds.empty())
{