Skip to content

Commit 03bf252

Browse files
Darwin Test: Use correct UInt32 type (#33129)
1 parent 17c8285 commit 03bf252

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/darwin/Framework/CHIPTests/MTRSwiftDeviceTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ class MTRSwiftDeviceTests : XCTestCase {
305305
wait(for: [ expectedValueReportedExpectation, expectedValueRemovedExpectation ], timeout: 5, enforceOrder: true)
306306

307307
// Test if previous value is reported on a write
308-
let testOnTimeValue : uint32 = 10;
308+
let testOnTimeValue : UInt32 = 10;
309309
let onTimeWriteSuccess = expectation(description: "OnTime write success");
310310
let onTimePreviousValue = expectation(description: "OnTime previous value");
311311
delegate.onAttributeDataReceived = { (data: [[ String: Any ]]) -> Void in

0 commit comments

Comments
 (0)