Change-Id: I2a3c4d0abeb285a60136cc665e0dedf3d292a52f
Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
Adam Cetnerowski
2019-07-25 17:59:12 +02:00
committed by sys_ocldev
parent 81035485c1
commit b33ed13750
2 changed files with 4 additions and 4 deletions

View File

@@ -11,8 +11,8 @@
namespace NEO {
bool getDevices(size_t &numDevicesReturned, ExecutionEnvironment &executionEnviornment) {
return getDevicesImpl(numDevicesReturned, executionEnviornment);
bool getDevices(size_t &numDevicesReturned, ExecutionEnvironment &executionEnvironment) {
return getDevicesImpl(numDevicesReturned, executionEnvironment);
}
} // namespace NEO

View File

@@ -17,9 +17,9 @@ using GetDevicesTests = ::testing::Test;
HWTEST_F(GetDevicesTests, WhenGetDevicesIsCalledThenSuccessIsReturned) {
size_t numDevicesReturned = 0;
ExecutionEnvironment executionEnviornment;
ExecutionEnvironment executionEnvironment;
auto returnValue = DeviceFactory::getDevices(numDevicesReturned, executionEnviornment);
auto returnValue = DeviceFactory::getDevices(numDevicesReturned, executionEnvironment);
EXPECT_EQ(true, returnValue);
}