Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Commit 2072327

Browse files
committed
Merge remote-tracking branch 'origin/feature' into feature
2 parents fa2c33e + b2aff57 commit 2072327

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ osx_image: xcode8.2
33
xcode_project: Sample Project/SimpleLineChart.xcodeproj
44
xcode_scheme: SimpleLineChartTests
55
xcode_sdk: iphonesimulator
6+
script:
7+
- xcodebuild clean build test -project "Sample Project/SimpleLineChart.xcodeproj" -scheme SimpleLineChartTests -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 7" ONLY_ACTIVE_ARCH=NO

Sample Project/SimpleLineChartTests/SimpleLineChartTests.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ - (void)testDrawnPoints {
105105
for (BEMCircle *dot in dots) {
106106
XCTAssert(dot.bounds.size.width == 10.0, @"Dots are expected to have a default width of 10.0");
107107
XCTAssert(dot.bounds.size.height == 10.0, @"Dots are expected to have a default height of 10.0");
108-
XCTAssert([dot.color isEqual:[UIColor colorWithWhite:1.0 alpha:0.7]], @"Dots are expected to be white at alpha 0.7 by default");
109108
XCTAssert(dot.absoluteValue == pointValue, @"Dots are expected to have a value equal to the value returned by the data source method 'valueForPointAtIndex:'");
110109
XCTAssert(dot.alpha == 0.0, @"Dots are expected to not be displayed by default (alpha of 0)");
111110
XCTAssert([dot.backgroundColor isEqual:[UIColor clearColor]], @"Dots are expected to have a clearColor background color by default");

0 commit comments

Comments
 (0)