Skip to content

Commit 79f6577

Browse files
committed
[ksqlDB.RestApi.Client]: fixed ambiguous namespace in integration tests project
1 parent 8caecca commit 79f6577

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/ksqlDB.RestApi.Client.IntegrationTests/KSql/RestApi/KSqlDbRestApiClientTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void ExecuteStatementAsync_Cancelled_ThrowsTaskCanceledException()
5858
KSqlDbStatement ksqlDbStatement = new(CreateTableStatement());
5959
var cts = new CancellationTokenSource();
6060

61-
Assert.ThrowsAsync<TaskCanceledException>(() =>
61+
NUnit.Framework.Assert.ThrowsAsync<TaskCanceledException>(() =>
6262
{
6363
//Act
6464
var httpResponseMessageTask = restApiClient.ExecuteStatementAsync(ksqlDbStatement, cts.Token);

0 commit comments

Comments
 (0)