diff --git a/c_api/tests/c_api_interop_test.cpp b/c_api/tests/c_api_interop_test.cpp index fdf700911f328..16bae248dbb90 100644 --- a/c_api/tests/c_api_interop_test.cpp +++ b/c_api/tests/c_api_interop_test.cpp @@ -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(0x12345678); void *stream2 = reinterpret_cast(0x87654321);