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
diff --git a/sdk/boot_image_sdk_test.go b/sdk/boot_image_sdk_test.go
index 915253d..9805a6a 100644
--- a/sdk/boot_image_sdk_test.go
+++ b/sdk/boot_image_sdk_test.go
@@ -29,7 +29,7 @@
 		}
 	`)
 
-	CheckSnapshot(result, "mysdk", "",
+	CheckSnapshot(t, result, "mysdk", "",
 		checkUnversionedAndroidBpContents(`
 // This is auto-generated. DO NOT EDIT.
 
@@ -58,6 +58,5 @@
     boot_images: ["mysdk_mybootimage@current"],
 }
 `),
-		checkAllCopyRules(""),
-	)
+		checkAllCopyRules(""))
 }