File tree 1 file changed +3
-3
lines changed
tests/Hangfire.SqlServer.Tests
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public void Ctor_CorrectlySets_AllInstanceProperties()
77
77
Assert . Equal ( Queue , fetchedJob . Queue ) ;
78
78
}
79
79
80
- [ Fact , CleanDatabase ]
80
+ [ Fact ]
81
81
public void RemoveFromQueue_CommitsTheTransaction ( )
82
82
{
83
83
// Arrange
@@ -90,7 +90,7 @@ public void RemoveFromQueue_CommitsTheTransaction()
90
90
_transaction . Verify ( x => x . Commit ( ) ) ;
91
91
}
92
92
93
- [ Fact , CleanDatabase ]
93
+ [ Fact ]
94
94
public void Requeue_RollsbackTheTransaction ( )
95
95
{
96
96
// Arrange
@@ -103,7 +103,7 @@ public void Requeue_RollsbackTheTransaction()
103
103
_transaction . Verify ( x => x . Rollback ( ) ) ;
104
104
}
105
105
106
- [ Fact , CleanDatabase ]
106
+ [ Fact ]
107
107
public void Dispose_DisposesTheTransactionAndConnection ( )
108
108
{
109
109
var processingJob = CreateFetchedJob ( "1" , "queue" ) ;
You can’t perform that action at this time.
0 commit comments