Meson: Trivial fix for tests

Meson sample folder was renamed without updating tests.

Change-Id: I95b984b6d18a43e0f570368b76b669376fff4f0e
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Alexis Jeandet
2020-06-24 00:39:16 +02:00
parent 38ded4ffea
commit bce43c15af
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ struct projectData
namespace {
static const QList<projectData> projectList{
{"Simple C Project", "SimpleCProject", {"SimpleCProject"}}};
{"Simple C Project", "simplecproject", {"SimpleCProject"}}};
} // namespace
#define WITH_CONFIGURED_PROJECT(_source_dir, _build_dir, ...) \

View File

@@ -34,7 +34,7 @@
using namespace MesonProjectManager::Internal;
namespace {
static const QList<QPair<const char *, QString>> projectList{{"Simple C Project", "SimpleCProject"}};
static const QList<QPair<const char *, QString>> projectList{{"Simple C Project", "simplecproject"}};
} // namespace
class AMesonWrapper : public QObject