diff options
Diffstat (limited to 'test/2034-spaces-in-SimpleName/build.py')
-rw-r--r-- | test/2034-spaces-in-SimpleName/build.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/2034-spaces-in-SimpleName/build.py b/test/2034-spaces-in-SimpleName/build.py index 7601e120ef..ff0aba2798 100644 --- a/test/2034-spaces-in-SimpleName/build.py +++ b/test/2034-spaces-in-SimpleName/build.py @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from art_build_rules import build_run_test # Use API level 10000 for spaces in SimpleName -build_run_test(use_desugar=False, api_level="10000") +def build(ctx): + ctx.default_build(use_desugar=False, api_level="10000") |