refactor: correct naming of MemoryPool enum values

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-12-12 09:11:27 +00:00
committed by Compute-Runtime-Automation
parent 2007ec2f6a
commit 01dd503e47
130 changed files with 830 additions and 830 deletions

View File

@@ -226,7 +226,7 @@ HWTEST_F(PrintfHandlerTests, givenDisallowedLocalMemoryCpuAccessWhenPrintEnqueue
device->getMemoryManager()->freeGraphicsMemory(printfHandler->printfSurface);
auto allocation = new MockGraphicsAllocation(reinterpret_cast<void *>(0x1000), 0x1000);
allocation->memoryPool = MemoryPool::LocalMemory;
allocation->memoryPool = MemoryPool::localMemory;
printfHandler->printfSurface = allocation;