Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 012b6679 authored by Paul Duffin's avatar Paul Duffin
Browse files

Switch to Assert... functions in dexpreopt_bootjars_test.go

Bug: 181070625
Test: m nothing
Change-Id: I74a0be8fab257966aecffa914fcc7c1e6f750eb2
parent c81854a6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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) {