Index: tests/PictureTest.cpp |
diff --git a/tests/PictureTest.cpp b/tests/PictureTest.cpp |
index 61f6d03cfe7e26df5ce13c41c841d5ef707098d9..a4dc7d71024565963137effd07e0eb61788f83a2 100644 |
--- a/tests/PictureTest.cpp |
+++ b/tests/PictureTest.cpp |
@@ -1536,13 +1536,6 @@ static void test_gen_id(skiatest::Reporter* reporter) { |
// both pictures should have different ids |
REPORTER_ASSERT(reporter, hasData->uniqueID() != empty.uniqueID()); |
- |
- // test out copy constructor |
- SkPicture copyWithData(*hasData); |
- REPORTER_ASSERT(reporter, hasData->uniqueID() == copyWithData.uniqueID()); |
- |
- SkPicture emptyCopy(empty); |
- REPORTER_ASSERT(reporter, empty.uniqueID() != emptyCopy.uniqueID()); |
} |
DEF_TEST(Picture, reporter) { |