summaryrefslogtreecommitdiff
path: root/render-test/manifest_parser.cpp
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2020-01-08 13:46:05 +0200
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2020-01-08 14:58:05 +0200
commitd148908cf14c78505ebc924a1783bbd44de0e399 (patch)
tree2441498c751dbc4bcb5e85ef636f9795cb3c8648 /render-test/manifest_parser.cpp
parent5a0f43037fc77d200a3759e15b258fc4e5717b43 (diff)
downloadqtlocation-mapboxgl-d148908cf14c78505ebc924a1783bbd44de0e399.tar.gz
[render-test] Make the manifest mandatory
At the moment we have an invalid path as default.
Diffstat (limited to 'render-test/manifest_parser.cpp')
-rw-r--r--render-test/manifest_parser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/render-test/manifest_parser.cpp b/render-test/manifest_parser.cpp
index 18b4b98cdd..4d2952c761 100644
--- a/render-test/manifest_parser.cpp
+++ b/render-test/manifest_parser.cpp
@@ -282,8 +282,8 @@ mbgl::optional<Manifest> ManifestParser::parseManifest(const std::string& manife
expectedMetricPaths.emplace_back("/sdcard/baselines/");
#endif
testPaths.emplace_back(testPath,
- getTestExpectations(defaultExpectationPath, testId, expectationPaths),
- getTestExpectations(defaultExpectationPath, testId, expectedMetricPaths));
+ getTestExpectations(defaultExpectationPath, testId, expectationPaths),
+ getTestExpectations(defaultExpectationPath, testId, expectedMetricPaths));
}
}