Skip to content

Commit 6c50305

Browse files
committed
Merge branch 'npgsql6'
2 parents aec291d + 60d83c9 commit 6c50305

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Hangfire.PostgreSql/Hangfire.PostgreSql.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@
5353
<PackageReference Include="Dapper.SqlBuilder" Version="[2.0.78, 2.1)" />
5454
<PackageReference Include="Hangfire.Core" Version="[1.7.19, 1.8)" />
5555
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
56-
<PackageReference Include="Npgsql" Version="[5.0, 6.0)" />
56+
<PackageReference Include="Npgsql" Version="[5.0, 6.1)" />
5757
</ItemGroup>
5858
</Project>

tests/Hangfire.PostgreSql.Tests/Integration/StorageConnectionIntegrationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public void CreateExpiredJob_CreatesAJobInTheStorage_AndSetsItsParameters()
148148
{
149149
UseConnections((sql, connection) =>
150150
{
151-
var createdAt = new DateTime(2012, 12, 12);
151+
var createdAt = new DateTime(2012, 12, 12, 0, 0, 0, DateTimeKind.Utc);
152152
var jobId = connection.CreateExpiredJob(
153153
Job.FromExpression(() => Worker.DoWork("Hello")),
154154
new Dictionary<string, string> { { "Key1", "Value1" }, { "Key2", "Value2" } },

0 commit comments

Comments
 (0)