Skip to content

Commit

Permalink
Darwin Test: Use correct UInt32 type (project-chip#33129)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksperling-apple authored Apr 24, 2024
1 parent 17c8285 commit 03bf252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/darwin/Framework/CHIPTests/MTRSwiftDeviceTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ class MTRSwiftDeviceTests : XCTestCase {
wait(for: [ expectedValueReportedExpectation, expectedValueRemovedExpectation ], timeout: 5, enforceOrder: true)

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

0 comments on commit 03bf252

Please sign in to comment.