Merge 3ce8bd13b2dfe10dc37af089fe1f491689e1e21c into a0f06a70e3da7afa88da9527c43951bca1f7cef2

This commit is contained in:
Manikandan K S 2026-07-29 15:06:03 -04:00 committed by GitHub
commit e416983a12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -679,8 +679,7 @@ using ::testing::Return;
for (int i = 1; i <= n; i++) {
EXPECT_CALL(turtle, GetX())
.WillOnce(Return(10*i))
.RetiresOnSaturation();
.WillOnce(Return(10*i));
}
}
```