Skip to content

Commit

Permalink
chore(deps): update dependency oracle.manageddataaccess.core to v23 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored May 3, 2024
1 parent aa46eb0 commit b974137
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<CoverletOutputFormat>opencover</CoverletOutputFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="3.21.140" />
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="23.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
3 changes: 2 additions & 1 deletion tests/Repositories.Oracle.Tests/RepositoriesTests.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Threading;
using System.Threading.Tasks;
using Oracle.ManagedDataAccess.Client;
using Repositories.Base;
using TestClasses;
using Xunit;
Expand All @@ -21,7 +22,7 @@ public async Task CancellationTokenSource_Cancel()

cts.Cancel();

await Assert.ThrowsAnyAsync<OperationCanceledException>(() => Db.Address.FindAllAsync(cts.Token));
await Assert.ThrowsAnyAsync<OracleException>(() => Db.Address.FindAllAsync(cts.Token));
}

[Fact]
Expand Down

0 comments on commit b974137

Please sign in to comment.