Skip to content

Commit

Permalink
Merge branch 'dev' into configure-container-access
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus authored Apr 13, 2021
2 parents a4664a9 + 3e822c9 commit 907c1d4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 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.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);
}
}
}
4 changes: 2 additions & 2 deletions src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
</PropertyGroup>
<PropertyGroup>
<XunitVersion>2.4.1</XunitVersion>
<AkkaVersion>1.4.14</AkkaVersion>
<FluentAssertionsVersion>4.14.0</FluentAssertionsVersion>
<AkkaVersion>1.4.18</AkkaVersion>
<FluentAssertionsVersion>5.10.3</FluentAssertionsVersion>
<TestSdkVersion>16.9.4</TestSdkVersion>
<NetCoreTestVersion>netcoreapp3.1</NetCoreTestVersion>
<NetFrameworkTestVersion>net461</NetFrameworkTestVersion>
Expand Down

0 comments on commit 907c1d4

Please sign in to comment.