diff options
Diffstat (limited to 'test/005-annotations/build.py')
-rw-r--r-- | test/005-annotations/build.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/005-annotations/build.py b/test/005-annotations/build.py index 8cf988c7ca..a3aefce6f2 100644 --- a/test/005-annotations/build.py +++ b/test/005-annotations/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 # Build intermediate object to preserve class-retention annotations. -build_run_test(d8_flags=['--intermediate']) +def build(ctx): + ctx.default_build(d8_flags=['--intermediate']) |