Skip to content

Commit 1ddfc9a

Browse files
Change class name to CamelCase
Signed-off-by: Fabian Zwolinski <[email protected]>
1 parent 659109a commit 1ddfc9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opencl/test/unit_test/api/cl_get_platform_info_tests.inl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ TEST_F(clGetPlatformInfoTests, GivenClPlatformNameWhenGettingPlatformInfoStringT
101101
EXPECT_STREQ(paramValue, "Intel(R) OpenCL Graphics");
102102
}
103103

104-
class clGetPlatformInfoOverridePlatformNameTests : public clGetPlatformInfoTests {
104+
class ClGetPlatformInfoOverridePlatformNameTests : public clGetPlatformInfoTests {
105105
public:
106106
void SetUp() override {
107107
NEO::DebugManager.flags.OverridePlatformName.set(testPlatformName);
@@ -116,7 +116,7 @@ class clGetPlatformInfoOverridePlatformNameTests : public clGetPlatformInfoTests
116116
const std::string testPlatformName = "test platform name";
117117
};
118118

119-
TEST_F(clGetPlatformInfoOverridePlatformNameTests, givenDebugVariableOverridePlatformNameSpecifiedWhenGettingPlatformInfoStringThenPlatformNameIsTakenFromDebugVariable) {
119+
TEST_F(ClGetPlatformInfoOverridePlatformNameTests, givenDebugVariableOverridePlatformNameSpecifiedWhenGettingPlatformInfoStringThenPlatformNameIsTakenFromDebugVariable) {
120120
paramValue = getPlatformInfoString(pPlatform, CL_PLATFORM_NAME);
121121
EXPECT_STREQ(paramValue, testPlatformName.c_str());
122122
}

0 commit comments

Comments
 (0)