refactor: correct variable naming

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-12-01 12:07:00 +00:00
committed by Compute-Runtime-Automation
parent 039c993219
commit 7a17df93a6
9 changed files with 958 additions and 958 deletions

View File

@@ -109,7 +109,7 @@ TEST_F(ProcessElfBinaryTests, GivenValidSpirBinaryWhenCreatingProgramFromBinaryT
EXPECT_TRUE(program->getIsSpirV());
}
unsigned int BinaryTypeValues[] = {
unsigned int binaryTypeValues[] = {
CL_PROGRAM_BINARY_TYPE_EXECUTABLE,
CL_PROGRAM_BINARY_TYPE_LIBRARY,
CL_PROGRAM_BINARY_TYPE_COMPILED_OBJECT};
@@ -183,7 +183,7 @@ TEST_P(ProcessElfBinaryTestsWithBinaryType, GivenBinaryTypeWhenResolveProgramThe
INSTANTIATE_TEST_CASE_P(ResolveBinaryTests,
ProcessElfBinaryTestsWithBinaryType,
::testing::ValuesIn(BinaryTypeValues));
::testing::ValuesIn(binaryTypeValues));
TEST_F(ProcessElfBinaryTests, GivenEmptyBuildOptionsWhenCreatingProgramFromBinaryThenSuccessIsReturned) {
auto mockElf = std::make_unique<MockElfBinaryPatchtokens<>>(device->getHardwareInfo());