refactor: correct variable naming

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-11-30 13:33:54 +00:00
committed by Compute-Runtime-Automation
parent d25b3ebcdc
commit b92b5892b8
17 changed files with 150 additions and 152 deletions

View File

@@ -7881,7 +7881,7 @@ TEST_F(DebugApiLinuxMultitileTest, givenApiThreadAndMultipleTilesWhenGettingDevi
EXPECT_EQ(1u, deviceIndex);
}
template <bool BlockOnFence = false>
template <bool blockOnFence = false>
struct DebugApiLinuxMultiDeviceVmBindFixture : public DebugApiLinuxMultiDeviceFixture, public MockDebugSessionLinuxi915Helper {
void setUp() {
DebugApiLinuxMultiDeviceFixture::setUp();
@@ -7896,7 +7896,7 @@ struct DebugApiLinuxMultiDeviceVmBindFixture : public DebugApiLinuxMultiDeviceFi
handler = new MockIoctlHandler;
session->ioctlHandler.reset(handler);
session->blockOnFenceMode = BlockOnFence;
session->blockOnFenceMode = blockOnFence;
setupSessionClassHandlesAndUuidMap(session.get());
setupVmToTile(session.get());
}