diff options
author | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2020-01-27 16:31:33 +0200 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2020-01-28 00:44:07 +0200 |
commit | 0de6ffc383022e3ebfb658a729a0c9d7d7b026c4 (patch) | |
tree | 415d7542d0fd526b4c2daec74aa46728524a21f3 /platform/android | |
parent | 8ddb0a959002b96dda1e656e3bcd87ac55286122 (diff) | |
download | qtlocation-mapboxgl-0de6ffc383022e3ebfb658a729a0c9d7d7b026c4.tar.gz |
[build] Cleanup CircleCI configuration
- Remove the legacy build jobs
- Remove the next- namespace.
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/src/test/render_test_runner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/src/test/render_test_runner.cpp b/platform/android/src/test/render_test_runner.cpp index 8d9c9e4838..2e6047d0a8 100644 --- a/platform/android/src/test/render_test_runner.cpp +++ b/platform/android/src/test/render_test_runner.cpp @@ -50,8 +50,8 @@ void android_main(struct android_app* app) { return result; }; - auto result = runTestWithManifest("/metrics/next-android-render-test-runner-metrics.json"); - result = runTestWithManifest("/metrics/next-android-render-test-runner-style.json") && result; + auto result = runTestWithManifest("/metrics/android-render-test-runner-metrics.json"); + result = runTestWithManifest("/metrics/android-render-test-runner-style.json") && result; mbgl::Log::Info(mbgl::Event::General, "All tests are finished!"); changeState(env, app, result); } |