Skip to content

Commit f0bb4b9

Browse files
committed
Update SqlServerTransactionJobFacts.cs
1 parent c072cf8 commit f0bb4b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: tests/Hangfire.SqlServer.Tests/SqlServerTransactionJobFacts.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public void Ctor_CorrectlySets_AllInstanceProperties()
7777
Assert.Equal(Queue, fetchedJob.Queue);
7878
}
7979

80-
[Fact, CleanDatabase]
80+
[Fact]
8181
public void RemoveFromQueue_CommitsTheTransaction()
8282
{
8383
// Arrange
@@ -90,7 +90,7 @@ public void RemoveFromQueue_CommitsTheTransaction()
9090
_transaction.Verify(x => x.Commit());
9191
}
9292

93-
[Fact, CleanDatabase]
93+
[Fact]
9494
public void Requeue_RollsbackTheTransaction()
9595
{
9696
// Arrange
@@ -103,7 +103,7 @@ public void Requeue_RollsbackTheTransaction()
103103
_transaction.Verify(x => x.Rollback());
104104
}
105105

106-
[Fact, CleanDatabase]
106+
[Fact]
107107
public void Dispose_DisposesTheTransactionAndConnection()
108108
{
109109
var processingJob = CreateFetchedJob("1", "queue");

0 commit comments

Comments
 (0)