summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--render-test/parser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/render-test/parser.cpp b/render-test/parser.cpp
index b5f4f9e759..093d4b37f9 100644
--- a/render-test/parser.cpp
+++ b/render-test/parser.cpp
@@ -289,17 +289,17 @@ std::vector<std::string> readExpectedEntries(const std::regex& regex, const mbgl
} // namespace
std::vector<std::string> readExpectedImageEntries(const mbgl::filesystem::path& base) {
- static const std::regex regex(".*expected.*.png");
+ static const std::regex regex(".*/expected.*.png");
return readExpectedEntries(regex, base);
}
std::vector<std::string> readExpectedMetricEntries(const mbgl::filesystem::path& base) {
- static const std::regex regex(".*metrics.*.json");
+ static const std::regex regex(".*/metrics.*.json");
return readExpectedEntries(regex, base);
}
std::vector<std::string> readExpectedJSONEntries(const mbgl::filesystem::path& base) {
- static const std::regex regex(".*expected.*.json");
+ static const std::regex regex(".*/expected.*.json");
return readExpectedEntries(regex, base);
}