Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="aweXpect" Version="2.23.0" />
<PackageVersion Include="aweXpect.Core" Version="2.22.0" />
<PackageVersion Include="aweXpect" Version="2.24.0" />
<PackageVersion Include="aweXpect.Core" Version="2.22.2" />
<PackageVersion Include="aweXpect.Chronology" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Property StringValue was ""
/// <summary>
/// It is not possible to determine the type of <see langword="null" />!
/// </summary>
[Fact(Skip="TODO: Re-Enable after the next Core update")]
[Fact]
public async Task WhenCheckForNullAndItIsNull_ShouldSucceed()
{
DummyClass subject = new()
Expand Down
2 changes: 1 addition & 1 deletion Tests/aweXpect.Tests/Strings/ThatString.EndsWith.Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async Task Act()
await That(Act).DoesNotThrow();
}

[Fact(Skip = "TODO: Re-Enable after next core update")]
[Fact]
public async Task WhenActualIsEmpty_ShouldFail()
{
string subject = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ async Task Act()
await That(Act).DoesNotThrow();
}

[Fact(Skip = "TODO: Re-Enable after next core update")]
[Fact]
public async Task WhenActualIsEmpty_ShouldFail()
{
string subject = "";
Expand Down
Loading