@@ -164,7 +164,7 @@ public async Task CancelCommandWithTokenBeforeExecuteScalar()
164
164
}
165
165
}
166
166
167
- [ SkippableFact ( ServerFeatures . Timeout ) ]
167
+ [ Fact ]
168
168
public async Task CancelCommandWithTokenBeforeExecuteNonQuery ( )
169
169
{
170
170
using var cmd = new MySqlCommand ( "select 1;" , m_database . Connection ) ;
@@ -179,7 +179,7 @@ public async Task CancelCommandWithTokenBeforeExecuteNonQuery()
179
179
}
180
180
}
181
181
182
- [ SkippableFact ( ServerFeatures . Timeout ) ]
182
+ [ Fact ]
183
183
public async Task CancelCommandWithTokenBeforeExecuteReader ( )
184
184
{
185
185
using var cmd = new MySqlCommand ( "select 1;" , m_database . Connection ) ;
@@ -516,7 +516,7 @@ public void CancelMultiCommandBatchReader()
516
516
task . Wait ( ) ; // shouldn't throw
517
517
}
518
518
519
- [ SkippableFact ( ServerFeatures . Timeout ) ]
519
+ [ Fact ]
520
520
public async Task CancelBatchWithTokenBeforeExecuteScalar ( )
521
521
{
522
522
using var batch = new MySqlBatch ( m_database . Connection )
@@ -537,7 +537,7 @@ public async Task CancelBatchWithTokenBeforeExecuteScalar()
537
537
}
538
538
}
539
539
540
- [ SkippableFact ( ServerFeatures . Timeout ) ]
540
+ [ Fact ]
541
541
public async Task CancelBatchWithTokenBeforeExecuteNonQuery ( )
542
542
{
543
543
using var batch = new MySqlBatch ( m_database . Connection )
@@ -558,7 +558,7 @@ public async Task CancelBatchWithTokenBeforeExecuteNonQuery()
558
558
}
559
559
}
560
560
561
- [ SkippableFact ( ServerFeatures . Timeout ) ]
561
+ [ Fact ]
562
562
public async Task CancelBatchWithTokenBeforeExecuteReader ( )
563
563
{
564
564
using var batch = new MySqlBatch ( m_database . Connection )
0 commit comments