Replace QStringLiteral with QLatin1String

This commit is contained in:
Jonas Kvinge
2024-04-23 16:57:49 +02:00
parent 92e39a3e21
commit 227f5e5176
2 changed files with 3 additions and 3 deletions

View File

@@ -54,7 +54,7 @@ class CollectionBackendTest : public ::testing::Test {
// Returns a valid song with all the required fields set
Song ret;
ret.set_directory_id(directory_id);
ret.set_url(QUrl::fromLocalFile(QLatin1String("foo.flac")));
ret.set_url(QUrl::fromLocalFile(QStringLiteral("foo.flac")));
ret.set_mtime(1);
ret.set_ctime(1);
ret.set_filesize(1);