Use standard lower-case file extension

This commit is contained in:
TheAssassin
2018-10-25 00:30:41 +02:00
parent ca6c710c38
commit 4bdceec7d8
2 changed files with 1 additions and 1 deletions

View File

@@ -130,7 +130,7 @@ namespace AppDirTest {
for (recursive_directory_iterator itr(tmpAppDir); itr != end_itr && (!simple_app_desktop_found); itr++) {
const auto path = relative(itr->path(), tmpAppDir).filename().string();
if (path.find("simple_app.Desktop") != std::string::npos)
if (path.find("simple_app.desktop") != std::string::npos)
simple_app_desktop_found = true;
}