@@ -2330,7 +2330,7 @@ TEST_F(TestRead, TestSubscribe_OnActiveModeNotification)
2330
2330
GetLoopback ().mNumMessagesToDrop = 0 ;
2331
2331
callback.ClearCounters ();
2332
2332
InteractionModelEngine::GetInstance ()->OnActiveModeNotification (
2333
- ScopedNodeId (readClient.GetPeerNodeId (), readClient.GetFabricIndex ()));
2333
+ ScopedNodeId (readClient.GetPeerNodeId (), readClient.GetFabricIndex ()), static_cast < uint64_t >( 0 ) );
2334
2334
EXPECT_EQ (callback.mOnResubscriptionsAttempted , 1 );
2335
2335
EXPECT_EQ (callback.mLastError , CHIP_ERROR_TIMEOUT);
2336
2336
@@ -2402,7 +2402,7 @@ TEST_F(TestRead, TestSubscribe_SubGoAwayInserverOnActiveModeNotification)
2402
2402
GetLoopback ().mNumMessagesToDrop = 0 ;
2403
2403
callback.ClearCounters ();
2404
2404
InteractionModelEngine::GetInstance ()->OnActiveModeNotification (
2405
- ScopedNodeId (readClient.GetPeerNodeId (), readClient.GetFabricIndex ()));
2405
+ ScopedNodeId (readClient.GetPeerNodeId (), readClient.GetFabricIndex ()), static_cast < uint64_t >( 0 ) );
2406
2406
EXPECT_EQ (callback.mOnResubscriptionsAttempted , 1 );
2407
2407
EXPECT_EQ (callback.mLastError , CHIP_ERROR_TIMEOUT);
2408
2408
@@ -2453,7 +2453,6 @@ TEST_F(TestRead, TestSubscribe_MismatchedSubGoAwayInserverOnActiveModeNotificati
2453
2453
attributePathParams[0 ].mEndpointId = kTestEndpointId ;
2454
2454
attributePathParams[0 ].mClusterId = Clusters::UnitTesting::Id;
2455
2455
attributePathParams[0 ].mAttributeId = Clusters::UnitTesting::Attributes::Boolean ::Id;
2456
- readPrepareParams.mCatsMatchCheckIn = false ;
2457
2456
constexpr uint16_t maxIntervalCeilingSeconds = 1 ;
2458
2457
2459
2458
readPrepareParams.mMaxIntervalCeilingSeconds = maxIntervalCeilingSeconds;
@@ -2474,7 +2473,7 @@ TEST_F(TestRead, TestSubscribe_MismatchedSubGoAwayInserverOnActiveModeNotificati
2474
2473
GetLoopback ().mNumMessagesToDrop = 0 ;
2475
2474
callback.ClearCounters ();
2476
2475
InteractionModelEngine::GetInstance ()->OnActiveModeNotification (
2477
- ScopedNodeId (readClient.GetPeerNodeId (), readClient.GetFabricIndex ()));
2476
+ ScopedNodeId (readClient.GetPeerNodeId (), readClient.GetFabricIndex ()), static_cast < uint64_t >( 0 ) );
2478
2477
EXPECT_EQ (callback.mOnResubscriptionsAttempted , 0 );
2479
2478
EXPECT_EQ (callback.mLastError , CHIP_NO_ERROR);
2480
2479
EXPECT_EQ (callback.mOnError , 0 );
@@ -2526,7 +2525,7 @@ TEST_F(TestRead, TestSubscribeFailed_OnActiveModeNotification)
2526
2525
GetLoopback ().mNumMessagesToDrop = 0 ;
2527
2526
callback.ClearCounters ();
2528
2527
InteractionModelEngine::GetInstance ()->OnActiveModeNotification (
2529
- ScopedNodeId (readClient.GetPeerNodeId (), readClient.GetFabricIndex ()));
2528
+ ScopedNodeId (readClient.GetPeerNodeId (), readClient.GetFabricIndex ()), static_cast < uint64_t >( 0 ) );
2530
2529
//
2531
2530
// Drive servicing IO till we have established a subscription.
2532
2531
//
0 commit comments