aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/KtxTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/KtxTest.cpp')
-rw-r--r--tests/KtxTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/KtxTest.cpp b/tests/KtxTest.cpp
index 23c1d70900..53caabdd91 100644
--- a/tests/KtxTest.cpp
+++ b/tests/KtxTest.cpp
@@ -55,7 +55,7 @@ DEF_TEST(KtxReadWrite, reporter) {
SkAutoDataUnref encodedData(SkImageEncoder::EncodeData(bm8888, SkImageEncoder::kKTX_Type, 0));
REPORTER_ASSERT(reporter, encodedData);
- SkAutoTUnref<SkMemoryStream> stream(SkNEW_ARGS(SkMemoryStream, (encodedData)));
+ SkAutoTDelete<SkMemoryStream> stream(SkNEW_ARGS(SkMemoryStream, (encodedData)));
REPORTER_ASSERT(reporter, stream);
SkBitmap decodedBitmap;
@@ -107,7 +107,7 @@ DEF_TEST(KtxReadUnpremul, reporter) {
0xFF, 0xFF, 0xFF, 0x80, // Pixel 3
0xFF, 0xFF, 0xFF, 0x80};// Pixel 4
- SkAutoTUnref<SkMemoryStream> stream(
+ SkAutoTDelete<SkMemoryStream> stream(
SkNEW_ARGS(SkMemoryStream, (kHalfWhiteKTX, sizeof(kHalfWhiteKTX))));
REPORTER_ASSERT(reporter, stream);