summaryrefslogtreecommitdiff
path: root/platform/darwin/test/MGLStyleTests.mm
diff options
context:
space:
mode:
authorFabian Guerra Soto <fabian.guerra@mapbox.com>2019-01-08 11:56:25 -0600
committerGitHub <noreply@github.com>2019-01-08 11:56:25 -0600
commit4a858eb381ab339ed6634ad05efe4a3d555a7f35 (patch)
tree49eb0752143dc45ae7c5fce8874f7430a4a5954a /platform/darwin/test/MGLStyleTests.mm
parent9e3a64970f161cbc10043766c51a13136753d158 (diff)
downloadqtlocation-mapboxgl-4a858eb381ab339ed6634ad05efe4a3d555a7f35.tar.gz
[ios, macos] Renames MGLStyle.enablePlacementTransitions (#13685)
* [ios, macos] Rename enablePlacementTransitions to performsPlacementTransitions. * [ios, macos] Update changelogs.
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