From 13cae6244904b9458066088dcc6496b63496fe90 Mon Sep 17 00:00:00 2001 From: Kevin Smith Date: Thu, 14 Feb 2019 14:43:15 -0800 Subject: [PATCH] Correct View vs. Layer here (tho it doesn't make any difference) Older FBSnapshot versions, however, don't use VerifyViewOrLayer --- Tests/ASSnapshotTestCase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/ASSnapshotTestCase.h b/Tests/ASSnapshotTestCase.h index a59079f1d..0741aaab5 100644 --- a/Tests/ASSnapshotTestCase.h +++ b/Tests/ASSnapshotTestCase.h @@ -27,7 +27,7 @@ NSOrderedSet *ASSnapshotTestCaseDefaultSuffixes(void); FBSnapshotVerifyViewWithOptions(view__, identifier__, ASSnapshotTestCaseDefaultSuffixes(), 0); #define ASSnapshotVerifyViewWithTolerance(view__, identifier__, tolerance__) \ - FBSnapshotVerifyLayerWithOptions(view__, identifier__, ASSnapshotTestCaseDefaultSuffixes(), tolerance__); + FBSnapshotVerifyViewWithOptions(view__, identifier__, ASSnapshotTestCaseDefaultSuffixes(), tolerance__); @interface ASSnapshotTestCase : FBSnapshotTestCase