Skip to content

Commit 202174d

Browse files
committed
Fix the unit test compile issue
1 parent 04e7af0 commit 202174d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/IndicatorTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class IndicatorTests: XCTestCase {
5555
func testProgressIndicator() throws {
5656
let expectation = self.expectation(description: "Progress indicator")
5757
let binding = Binding<Bool>(wrappedValue: true)
58-
let progress = Binding<CGFloat>(wrappedValue: 0)
58+
let progress = Binding<Double>(wrappedValue: 0)
5959
let indicator = ProgressIndicator(binding, progress: progress)
6060
ViewHosting.host(view: indicator)
6161
let indicatorView = try indicator.inspect().actualView().platformView().wrapped

0 commit comments

Comments
 (0)