Skip to content

Commit

Permalink
[NVIDIA] Fix AsyncParameterResultCancel test
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrii Pavliuk authored and Andrii Pavliuk committed Jul 4, 2023
1 parent 6ee2e1b commit 968c44d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ TEST_F(InferenceRequestBasicTest, AsyncParameterResultCancel) {
fillBlobs(inferRequest, inputsInfo, 1);
ASSERT_NO_THROW(inferRequest.StartAsync());
ASSERT_NO_THROW(inferRequest.Cancel());
ASSERT_THROW(inferRequest.Wait(5000), std::exception);
ASSERT_NO_THROW(inferRequest.Wait(5000));
}

TEST_F(smoke_InferenceRequestTest, PerformanceCounters) {
Expand Down

0 comments on commit 968c44d

Please sign in to comment.