Correct method names in device and module fixtures

correct naming in derived classes

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2022-08-11 14:01:11 +00:00
committed by Compute-Runtime-Automation
parent fea9c9aca7
commit 6a46e8f0ca
215 changed files with 639 additions and 685 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2021 Intel Corporation
* Copyright (C) 2018-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -23,7 +23,7 @@ void api_fixture::SetUp() {
setReferenceTime();
PlatformFixture::SetUp(numPlatformDevices, platformDevices);
DeviceFixture::SetUp();
DeviceFixture::setUp();
ASSERT_NE(nullptr, pDevice);
auto pDevice = pPlatform->getDevice(0);
@@ -40,7 +40,7 @@ void api_fixture::TearDown() {
delete pContext;
delete pProgram;
CommandQueueHwFixture::TearDown();
DeviceFixture::TearDown();
DeviceFixture::tearDown();
PlatformFixture::TearDown();
}
} // namespace NEO