From 980a65d7ba6edb7d2577a25b93e46eb907d6dc08 Mon Sep 17 00:00:00 2001 From: Bram Veenboer Date: Tue, 16 Jul 2024 09:40:06 +0200 Subject: [PATCH] Update tests/test_cu.cpp --- tests/test_cu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cu.cpp b/tests/test_cu.cpp index f146489..2d2c572 100644 --- a/tests/test_cu.cpp +++ b/tests/test_cu.cpp @@ -31,7 +31,7 @@ TEST_CASE("Test context::getDevice", "[device]") { cu::Device device(0); cu::Context context(CU_CTX_SCHED_BLOCKING_SYNC, device); - SECTION("Test after initialization") { + SECTION("Test getName from context") { CHECK(device.getName() == context.getCurrent().getDevice().getName()); } }