Skip to content

Commit 101d4bc

Browse files
svdokzaher
authored andcommitted
Use old XCTAssertEqualsWithAccuracy for Xcode 8 compatibility
1 parent b959e79 commit 101d4bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/RxCocoaTests/UIStepper+RxTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import XCTest
2727
let stepper = UIStepper()
2828
let stepValue: Double = 0.42
2929
Observable.just(stepValue).bind(to: stepper.rx.stepValue).dispose()
30-
XCTAssertEqual(stepper.stepValue, stepValue, accuracy: 0.0001)
30+
XCTAssertEqualWithAccuracy(stepper.stepValue, stepValue, accuracy: 0.0001)
3131
}
3232
}
3333

0 commit comments

Comments
 (0)