diff options
author | 2021-03-13 01:48:42 +0000 | |
---|---|---|
committer | 2021-03-13 16:02:30 +0000 | |
commit | 012b6679d3da52538b531c81b940bb7587e80154 (patch) | |
tree | 4b2cbb5cefa5ac5e9118fb689e8b945a737eb1fc | |
parent | c81854a6427a747d8747b47846a155aa38da2d8b (diff) |
Switch to Assert... functions in dexpreopt_bootjars_test.go
Bug: 181070625
Test: m nothing
Change-Id: I74a0be8fab257966aecffa914fcc7c1e6f750eb2
-rw-r--r-- | java/dexpreopt_bootjars_test.go | 4 |
1 files 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) { |