test: update expectation in test related to ptl acronyms

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2025-04-29 10:12:22 +00:00
committed by Compute-Runtime-Automation
parent 85f71062ae
commit 949a2e5cb9

View File

@@ -53,10 +53,10 @@ PTLTEST_F(PtlOfflineCompilerTests, givenPtlUDeviceIdValueWhenInitHwInfoThenCorre
capture.captureStdout();
mockOfflineCompiler.initHardwareInfo(deviceIDStr.str());
std::string output = capture.getCapturedStdout();
expectedOutput << "Auto-detected target based on " << deviceIDStr.str() << " device id: ptl-u-a0\n";
expectedOutput << "Auto-detected target based on " << deviceIDStr.str() << " device id: ptl-u\n";
EXPECT_STREQ(output.c_str(), expectedOutput.str().c_str());
EXPECT_EQ(mockOfflineCompiler.hwInfo.platform.usDeviceID, deviceID);
EXPECT_EQ(mockOfflineCompiler.deviceConfig, ptlConfig.value);
}
}
}