summaryrefslogtreecommitdiff
path: root/sdk/sdk_test.go
diff options
context:
space:
mode:
author Paul Duffin <paulduffin@google.com> 2021-03-11 12:32:12 +0000
committer Paul Duffin <paulduffin@google.com> 2021-03-11 13:39:24 +0000
commit981b94b4609b34b880bc8b85fc51fed4daf94d17 (patch)
treef01ee74891ec085c7ea25d3b11e194783f584002 /sdk/sdk_test.go
parent8306f25679746fd00ae2739b62fa1f70dae5a52e (diff)
Switch CheckSnapshot from a testSdkResult method to a function
This will allow the testSdkResult to be replaced with the TestResult when switching sdk package to use test fixtures. Bug: 181070625 Test: m nothing Change-Id: Ieca63f4c189f5e804102aeb4073289ea03143b6e
Diffstat (limited to 'sdk/sdk_test.go')
-rw-r--r--sdk/sdk_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdk/sdk_test.go b/sdk/sdk_test.go
index a7acd0c5f..65a9001e6 100644
--- a/sdk/sdk_test.go
+++ b/sdk/sdk_test.go
@@ -169,7 +169,7 @@ func TestSnapshotVisibility(t *testing.T) {
"package/Android.bp": []byte(packageBp),
})
- result.CheckSnapshot("mysdk", "package",
+ CheckSnapshot(result, "mysdk", "package",
checkAndroidBpContents(`
// This is auto-generated. DO NOT EDIT.
@@ -317,7 +317,7 @@ func TestSdkInstall(t *testing.T) {
`
result := testSdkWithFs(t, sdk, nil)
- result.CheckSnapshot("mysdk", "",
+ CheckSnapshot(result, "mysdk", "",
checkAllOtherCopyRules(`.intermediates/mysdk/common_os/mysdk-current.zip -> mysdk-current.zip`),
)
}