From 012b6679d3da52538b531c81b940bb7587e80154 Mon Sep 17 00:00:00 2001 From: Paul Duffin Date: Sat, 13 Mar 2021 01:48:42 +0000 Subject: [PATCH] Switch to Assert... functions in dexpreopt_bootjars_test.go Bug: 181070625 Test: m nothing Change-Id: I74a0be8fab257966aecffa914fcc7c1e6f750eb2 --- java/dexpreopt_bootjars_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/dexpreopt_bootjars_test.go b/java/dexpreopt_bootjars_test.go index a0d10ecbb..1b910fab7 100644 --- a/java/dexpreopt_bootjars_test.go +++ b/java/dexpreopt_bootjars_test.go @@ -66,9 +66,9 @@ func testDexpreoptBoot(t *testing.T, ruleFile string, expectedInputs, expectedOu sort.Strings(outputs) sort.Strings(expectedOutputs) - result.AssertDeepEquals("inputs", expectedInputs, inputs) + android.AssertDeepEquals(t, "inputs", expectedInputs, inputs) - result.AssertDeepEquals("outputs", expectedOutputs, outputs) + android.AssertDeepEquals(t, "outputs", expectedOutputs, outputs) } func TestDexpreoptBootJars(t *testing.T) {