diff options
author | 2022-11-16 20:31:11 +0000 | |
---|---|---|
committer | 2022-11-17 11:01:22 +0000 | |
commit | e82c87deb52ce0a6bbcaa2dbb37db0e253555d16 (patch) | |
tree | bd657b311ac31e41b04723ffffc97a3161fc4bea /test/968-default-partial-compile-gen/build.py | |
parent | 6c9c12128f929f535995943fac58e2efba51921f (diff) |
Run test build: Rename 'experimental' to 'api_level'
The purpose of the 'experimental' flag is to provide named API level.
Allow the API level to be string or integer instead.
Test: Build artifacts are identical as before.
Change-Id: I15a78979783c1a9237ba9814a48171349e4e5a00
Diffstat (limited to 'test/968-default-partial-compile-gen/build.py')
-rw-r--r-- | test/968-default-partial-compile-gen/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/968-default-partial-compile-gen/build.py b/test/968-default-partial-compile-gen/build.py index 8868b702e6..435be542a6 100644 --- a/test/968-default-partial-compile-gen/build.py +++ b/test/968-default-partial-compile-gen/build.py @@ -20,4 +20,4 @@ def build(ctx): ctx.bash("./generate-sources --" + ctx.mode) if ctx.jvm: return - ctx.default_build(experimental="default-methods") + ctx.default_build(api_level="default-methods") |