Skip to content

Commit

Permalink
ci: fix leftover test (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepansergeevitch authored Sep 25, 2024
1 parent db54a7a commit 3eb0edb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FireboltDotNetSdk.Tests/Integration/ExecuteTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public void ShortTimeout()
using var conn = new FireboltConnection(SYSTEM_CONNECTION_STRING);
conn.Open();
FireboltCommand command = new FireboltCommand(conn, LONG_QUERY) { CommandTimeoutMillis = 1 };
Assert.Throws<TaskCanceledException>(() => command.ExecuteReader());
Assert.Throws<FireboltTimeoutException>(() => command.ExecuteReader());
}

[TestCase(0)] // 0 means infinite
Expand Down

0 comments on commit 3eb0edb

Please sign in to comment.