Skip to content

Commit

Permalink
fix: TestLocalDiscovery::testDirNameEncoding()
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepDiver1975 committed Jan 24, 2025
1 parent 46b7009 commit fa58ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/testlocaldiscovery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,12 +263,12 @@ private Q_SLOTS:

{
auto localState = fakeFolder.currentLocalState();
FileInfo *localFile = localState.find(QStringLiteral("P/A/") + a_umlaut_composed);
FileInfo *localFile = localState.find(QStringLiteral("P/A/") + a_umlaut_decomposed);
QVERIFY(localFile != nullptr); // check if the file exists
}
{
auto localState = fakeFolder.currentLocalState();
FileInfo *localFile = localState.find(QStringLiteral("P/B") + a_umlaut_composed + QStringLiteral("/b"));
FileInfo *localFile = localState.find(QStringLiteral("P/B") + a_umlaut_decomposed + QStringLiteral("/b"));
QVERIFY(localFile != nullptr); // check if the file exists
}

Expand Down

0 comments on commit fa58ea9

Please sign in to comment.