mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
Fix typo
Change-Id: I2a3c4d0abeb285a60136cc665e0dedf3d292a52f Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
81035485c1
commit
b33ed13750
@@ -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
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user