Stop sdk package depending on testing.T being embedded in TestResult

This change is in preparation for removing testing.T from TestResult.

Bug: 181070625
Test: m nothing
Change-Id: I67535aff0d894e6e3d8456b75540f340af853355
This commit is contained in:
Paul Duffin
2021-03-12 12:19:43 +00:00
parent e84b1338c5
commit 36474d322b
7 changed files with 103 additions and 116 deletions

View File

@@ -29,7 +29,7 @@ func TestSnapshotWithBootImage(t *testing.T) {
}
`)
CheckSnapshot(result, "mysdk", "",
CheckSnapshot(t, result, "mysdk", "",
checkUnversionedAndroidBpContents(`
// This is auto-generated. DO NOT EDIT.
@@ -58,6 +58,5 @@ sdk_snapshot {
boot_images: ["mysdk_mybootimage@current"],
}
`),
checkAllCopyRules(""),
)
checkAllCopyRules(""))
}