From f37a82cc04a978665e03d80acab0db46ff6a943c Mon Sep 17 00:00:00 2001 From: Phil Asmar Date: Thu, 22 Aug 2024 19:58:20 -0400 Subject: [PATCH] commit 2 --- .../test/TestServerlessApp.IntegrationTests/CustomResponse.cs | 2 ++ 1 file changed, 2 insertions(+) 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() {