refactor: remove not needed link to NEO-12901

Related-To: NEO-12901
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2025-05-15 11:41:46 +00:00
committed by Compute-Runtime-Automation
parent e3081c4db2
commit 1284579ff7
11 changed files with 19 additions and 19 deletions

View File

@@ -2022,7 +2022,7 @@ TEST_F(CsrSelectionCommandQueueWithBlitterTests, givenInvalidTransferDirectionWh
MockBuffer dstMemObj{dstGraphicsAllocation};
CsrSelectionArgs args{CL_COMMAND_COPY_BUFFER, &srcMemObj, &dstMemObj, 0u, nullptr};
args.direction = static_cast<TransferDirection>(0xFF); // NOLINT(clang-analyzer-optin.core.EnumCastOutOfRange), NEO-12901
args.direction = static_cast<TransferDirection>(0xFF); // NOLINT(clang-analyzer-optin.core.EnumCastOutOfRange)
EXPECT_ANY_THROW(queue->selectCsrForBuiltinOperation(args));
}