summaryrefslogtreecommitdiff
path: root/platform/darwin/test/MGLStyleTests.mm
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/test/MGLStyleTests.mm')
-rw-r--r--platform/darwin/test/MGLStyleTests.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/darwin/test/MGLStyleTests.mm b/platform/darwin/test/MGLStyleTests.mm
index ff075f63a6..7aaf70a80a 100644
--- a/platform/darwin/test/MGLStyleTests.mm
+++ b/platform/darwin/test/MGLStyleTests.mm
@@ -482,12 +482,12 @@
XCTAssert(self.style.transition.duration == transitionTest.duration);
}
-- (void)testEnablePlacementTransition
+- (void)testPerformsPlacementTransitions
{
- XCTAssertTrue(self.style.enablePlacementTransitions, @"The default value for enabling placement transitions should be YES.");
+ XCTAssertTrue(self.style.performsPlacementTransitions, @"The default value for enabling placement transitions should be YES.");
- self.style.enablePlacementTransitions = NO;
- XCTAssertFalse(self.style.enablePlacementTransitions, @"Enabling placement transitions should be NO.");
+ self.style.performsPlacementTransitions = NO;
+ XCTAssertFalse(self.style.performsPlacementTransitions, @"Enabling placement transitions should be NO.");
}
@end