Skip to content

Commit

Permalink
Remove reference to FluentAssertions, update FluentAssertions API cha…
Browse files Browse the repository at this point in the history
…nges
  • Loading branch information
Arkatufus committed Apr 13, 2021
1 parent c8ae12e commit 8e6e8e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

<ItemGroup>
<PackageReference Include="Akka.Persistence.TCK" Version="$(AkkaVersion)" />
<PackageReference Include="FluentAssertions" Version="$(FluentAssertionsVersion)" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void ShouldThrowArgumentExceptionForIllegalTableNames(string tableName, s
table-name = " + tableName + @"
}").WithFallback(AzurePersistence.DefaultConfig)
.GetConfig("akka.persistence.journal.azure-table"));
createJournalSettings.Should().Throw<ArgumentException>(reason);
createJournalSettings.ShouldThrow<ArgumentException>(reason);
}

[Theory]
Expand All @@ -113,7 +113,7 @@ public void ShouldThrowArgumentExceptionForIllegalContainerNames(string containe
}").WithFallback(AzurePersistence.DefaultConfig)
.GetConfig("akka.persistence.snapshot-store.azure-blob-store"));

createSnapshotSettings.Should().Throw<ArgumentException>(reason);
createSnapshotSettings.ShouldThrow<ArgumentException>(reason);
}
}
}

0 comments on commit 8e6e8e6

Please sign in to comment.