From 8e6e8e63837371a71dd3ac6ee9003cf12508d4e3 Mon Sep 17 00:00:00 2001 From: Gregorius Soedharmo Date: Tue, 13 Apr 2021 22:47:33 +0700 Subject: [PATCH] Remove reference to FluentAssertions, update FluentAssertions API changes --- .../Akka.Persistence.Azure.Tests.csproj | 1 - .../AzurePersistenceConfigSpec.cs | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Akka.Persistence.Azure.Tests/Akka.Persistence.Azure.Tests.csproj b/src/Akka.Persistence.Azure.Tests/Akka.Persistence.Azure.Tests.csproj index bf8250e..2a30455 100644 --- a/src/Akka.Persistence.Azure.Tests/Akka.Persistence.Azure.Tests.csproj +++ b/src/Akka.Persistence.Azure.Tests/Akka.Persistence.Azure.Tests.csproj @@ -7,7 +7,6 @@ - diff --git a/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs b/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs index 52326d5..bd48dc6 100644 --- a/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs +++ b/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs @@ -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(reason); + createJournalSettings.ShouldThrow(reason); } [Theory] @@ -113,7 +113,7 @@ public void ShouldThrowArgumentExceptionForIllegalContainerNames(string containe }").WithFallback(AzurePersistence.DefaultConfig) .GetConfig("akka.persistence.snapshot-store.azure-blob-store")); - createSnapshotSettings.Should().Throw(reason); + createSnapshotSettings.ShouldThrow(reason); } } } \ No newline at end of file