From 8996c476641af14ce5c9be53c5ad8ba5201ea624 Mon Sep 17 00:00:00 2001 From: Kamil Kopryk Date: Wed, 24 Jul 2024 11:31:59 +0000 Subject: [PATCH] refactor: correct typo Signed-off-by: Kamil Kopryk --- .../core/test/unit_tests/sources/cmdlist/test_cmdlist_2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/level_zero/core/test/unit_tests/sources/cmdlist/test_cmdlist_2.cpp b/level_zero/core/test/unit_tests/sources/cmdlist/test_cmdlist_2.cpp index c27b595a7a..2c842b2503 100644 --- a/level_zero/core/test/unit_tests/sources/cmdlist/test_cmdlist_2.cpp +++ b/level_zero/core/test/unit_tests/sources/cmdlist/test_cmdlist_2.cpp @@ -584,7 +584,7 @@ HWTEST2_F(CommandListAppend, givenCommandListWhen4GBytePageFaultCopyCalledThenPa EXPECT_EQ(cmdList.appendMemoryCopyKernelWithGAStatelessCalledTimes, 2u); } -HWTEST2_F(CommandListAppend, givenCommandListAnd3DWhbufferenMemoryCopyRegionCalledThenCopyKernel3DCalled, IsAtLeastSkl) { +HWTEST2_F(CommandListAppend, givenCommandListAnd3dBufferWhenMemoryCopyRegionCalledThenCopyKernel3DCalled, IsAtLeastSkl) { MockCommandListHw cmdList; cmdList.initialize(device, NEO::EngineGroupType::renderCompute, 0u); void *srcPtr = reinterpret_cast(0x1234); @@ -596,7 +596,7 @@ HWTEST2_F(CommandListAppend, givenCommandListAnd3DWhbufferenMemoryCopyRegionCall EXPECT_GT(cmdList.appendMemoryCopyKernel3dCalledTimes, 0u); } -HWTEST2_F(CommandListAppend, givenCommandListAnd2DWhbufferenMemoryCopyRegionCalledThenCopyKernel2DCalled, IsAtLeastSkl) { +HWTEST2_F(CommandListAppend, givenCommandListAnd2dBufferWhenMemoryCopyRegionCalledThenCopyKernel2DCalled, IsAtLeastSkl) { MockCommandListHw cmdList; cmdList.initialize(device, NEO::EngineGroupType::renderCompute, 0u); void *srcPtr = reinterpret_cast(0x1234);