Skip to content

Commit

Permalink
Merge branch 'npgsql6'
Browse files Browse the repository at this point in the history
  • Loading branch information
ahydrax committed Apr 12, 2022
2 parents aec291d + 60d83c9 commit 6c50305
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Hangfire.PostgreSql/Hangfire.PostgreSql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@
<PackageReference Include="Dapper.SqlBuilder" Version="[2.0.78, 2.1)" />
<PackageReference Include="Hangfire.Core" Version="[1.7.19, 1.8)" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Npgsql" Version="[5.0, 6.0)" />
<PackageReference Include="Npgsql" Version="[5.0, 6.1)" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void CreateExpiredJob_CreatesAJobInTheStorage_AndSetsItsParameters()
{
UseConnections((sql, connection) =>
{
var createdAt = new DateTime(2012, 12, 12);
var createdAt = new DateTime(2012, 12, 12, 0, 0, 0, DateTimeKind.Utc);
var jobId = connection.CreateExpiredJob(
Job.FromExpression(() => Worker.DoWork("Hello")),
new Dictionary<string, string> { { "Key1", "Value1" }, { "Key2", "Value2" } },
Expand Down

0 comments on commit 6c50305

Please sign in to comment.