Skip to content

Commit

Permalink
Make racy Darwin test less racy. (#27826)
Browse files Browse the repository at this point in the history
We used a 1s min-interval and a 1s sleep to wait for reports.  Those could race
very easily.  Better to use a sleep longer than the min-interval.

Fixes #27507
  • Loading branch information
bzbarsky-apple authored and pull[bot] committed Aug 24, 2023
1 parent 064a12c commit 1314153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/darwin/Framework/CHIPTests/MTRXPCListenerSampleTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -1686,7 +1686,7 @@ - (void)test900_SubscribeClusterStateCache

MTRClusterStateCacheContainer * clusterStateCacheContainer = [[MTRClusterStateCacheContainer alloc] init];
NSLog(@"Setting up attribute cache subscription...");
__auto_type * params = [[MTRSubscribeParams alloc] initWithMinInterval:@(1) maxInterval:@(60)];
__auto_type * params = [[MTRSubscribeParams alloc] initWithMinInterval:@(0) maxInterval:@(60)];
[device subscribeWithQueue:queue
params:params
clusterStateCacheContainer:clusterStateCacheContainer
Expand Down

0 comments on commit 1314153

Please sign in to comment.