Skip to content

Commit

Permalink
Update changes to FluentAssertions API
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus committed Apr 13, 2021
1 parent f5508ff commit c8ae12e
Showing 1 changed file with 2 additions and 2 deletions.
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.ShouldThrow<ArgumentException>(reason);
createJournalSettings.Should().Throw<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.ShouldThrow<ArgumentException>(reason);
createSnapshotSettings.Should().Throw<ArgumentException>(reason);
}
}
}

0 comments on commit c8ae12e

Please sign in to comment.