Skip to content

Commit

Permalink
Update c_api_interop_test.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Routhleck authored Aug 14, 2024
1 parent 68f5d61 commit 22f891d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion c_api/tests/c_api_interop_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ TEST_F(CapiTest, TestCUDAImport) {
TEST_F(CapiTest, TestCUDAStreamSet) {
void *temp_stream = nullptr;

ti_get_cuda_stream(&temp_stream) EXPECT_EQ(temp_stream, nullptr);
ti_get_cuda_stream(&temp_stream);
EXPECT_EQ(temp_stream, nullptr);

void *stream1 = reinterpret_cast<void *>(0x12345678);
void *stream2 = reinterpret_cast<void *>(0x87654321);
Expand Down

0 comments on commit 22f891d

Please sign in to comment.