diff --git a/Libraries/test/TestServerlessApp.IntegrationTests/CustomResponse.cs b/Libraries/test/TestServerlessApp.IntegrationTests/CustomResponse.cs index cfdf8f1f4..9c9ea7255 100644 --- a/Libraries/test/TestServerlessApp.IntegrationTests/CustomResponse.cs +++ b/Libraries/test/TestServerlessApp.IntegrationTests/CustomResponse.cs @@ -15,6 +15,7 @@ public async Task OkResponseWithHeader_Returns200Status() Assert.That(await response.Content.ReadAsStringAsync(), Is.EqualTo("All Good")); } + [Retry(3)] [Test] public async Task OkResponseWithHeader_ReturnsValidationErrors() { @@ -27,6 +28,7 @@ public async Task OkResponseWithHeader_ReturnsValidationErrors() Assert.That(errorJson["message"].ToString(), Is.EqualTo(expectedErrorMessage)); } + [Retry(3)] [Test] public async Task OkResponseWithCustomSerializer_Returns200Status() {