Windows flaky test fix (#16980)

This commit is contained in:
Carl Pulley 2023-06-13 15:29:45 +01:00 committed by GitHub
parent da77708ea9
commit 76a2947a22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1115,7 +1115,7 @@ trait AbstractTriggerServiceTestAuthMiddleware
}
_ <- submitCmd(client, aliceExp.unwrap, createACommand(7))
// Query ACS until we see a B contract
_ <- RetryStrategy.constant(5, 1.seconds) { (_, _) =>
_ <- RetryStrategy.constant(5, 2.seconds) { (_, _) =>
getActiveContracts(client, aliceExp, Identifier(testPkgId, "TestTrigger", "B"))
.map(_.length shouldBe 1)
}