Skip to content

Commit

Permalink
Re-enable tests
Browse files Browse the repository at this point in the history
Remove workarounds for dotnet/sdk#41541.
  • Loading branch information
martincostello committed Oct 7, 2024
1 parent 99e7d1f commit 715f59b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void Configure(IServiceCollection services)
Encoding.UTF8.GetString(response.Content).ShouldBe("""{"Sum":6}""");
}

[Fact(Skip = "https://github.com/dotnet/sdk/issues/41541")]
[Fact]
public async Task Function_Can_Handle_Failed_Request()
{
// Arrange
Expand Down
4 changes: 2 additions & 2 deletions tests/AwsLambdaTestServer.Tests/LambdaTestServerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public async Task Function_Can_Process_Request_With_Mobile_Sdk_Headers()
response!.IsSuccessful.ShouldBeTrue();
}

[Fact(Skip = "https://github.com/dotnet/sdk/issues/41541")]
[Fact]
public async Task Function_Can_Handle_Failed_Request()
{
// Arrange
Expand All @@ -251,7 +251,7 @@ public async Task Function_Can_Handle_Failed_Request()
response.Content.ShouldNotBeNull();
}

[Fact(Skip = "https://github.com/dotnet/sdk/issues/41541")]
[Fact]
public async Task Function_Can_Handle_Failed_Initialization()
{
// Arrange
Expand Down

0 comments on commit 715f59b

Please sign in to comment.