From 4bdceec7d865bfbc504b8616bd3bbbd7e0994412 Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Thu, 25 Oct 2018 00:30:41 +0200 Subject: [PATCH] Use standard lower-case file extension --- tests/data/{simple_app.Desktop => simple_app.desktop} | 0 tests/test_appdir.cpp | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/data/{simple_app.Desktop => simple_app.desktop} (100%) diff --git a/tests/data/simple_app.Desktop b/tests/data/simple_app.desktop similarity index 100% rename from tests/data/simple_app.Desktop rename to tests/data/simple_app.desktop diff --git a/tests/test_appdir.cpp b/tests/test_appdir.cpp index c6f39e0..09d6f16 100644 --- a/tests/test_appdir.cpp +++ b/tests/test_appdir.cpp @@ -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; }