From 467ffade6cc1758f7998143eba2ceb23b4afc7ec Mon Sep 17 00:00:00 2001 From: Syed Faaiz Hussain Date: Mon, 9 Sep 2024 15:06:20 -0700 Subject: [PATCH] use correct class --- tests/api/printf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api/printf.cpp b/tests/api/printf.cpp index 4c753b5f..dc4fd2eb 100644 --- a/tests/api/printf.cpp +++ b/tests/api/printf.cpp @@ -32,7 +32,7 @@ TEST_F(WithCommandQueueAndPrintf, SimplePrintf) { ASSERT_STREQ(m_printf_output.c_str(), message); } -TEST_F(WithCommandQueue, SimplePrintfWithFormat) { +TEST_F(WithCommandQueueAndPrintf, SimplePrintfWithFormat) { const char message[] = ""; char source[512]; sprintf(source, "kernel void test_printf() { printf(\"%%s\", \"\"); }");