We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8caecca commit 79f6577Copy full SHA for 79f6577
Tests/ksqlDB.RestApi.Client.IntegrationTests/KSql/RestApi/KSqlDbRestApiClientTests.cs
@@ -58,7 +58,7 @@ public void ExecuteStatementAsync_Cancelled_ThrowsTaskCanceledException()
58
KSqlDbStatement ksqlDbStatement = new(CreateTableStatement());
59
var cts = new CancellationTokenSource();
60
61
- Assert.ThrowsAsync<TaskCanceledException>(() =>
+ NUnit.Framework.Assert.ThrowsAsync<TaskCanceledException>(() =>
62
{
63
//Act
64
var httpResponseMessageTask = restApiClient.ExecuteStatementAsync(ksqlDbStatement, cts.Token);
0 commit comments