mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Correct naming convention in custom_event_listener.h
Change-Id: I895d04cf18cb3e11b16c464ce9cc169974311f35 Signed-off-by: Jablonski, Mateusz <mateusz.jablonski@intel.com>
This commit is contained in:

committed by
sys_ocldev

parent
d6cc7ee650
commit
7de51d537f
@ -64,11 +64,11 @@ class CCustomEventListener : public ::testing::TestEventListener {
|
||||
lastTest = ss.str();
|
||||
}
|
||||
|
||||
void OnTestPartResult(const ::testing::TestPartResult &test_part_result) override {
|
||||
if (test_part_result.failed()) {
|
||||
void OnTestPartResult(const ::testing::TestPartResult &testPartResult) override {
|
||||
if (testPartResult.failed()) {
|
||||
printf("\n");
|
||||
}
|
||||
_listener->OnTestPartResult(test_part_result);
|
||||
_listener->OnTestPartResult(testPartResult);
|
||||
}
|
||||
|
||||
void OnTestEnd(const ::testing::TestInfo &testCase) override {
|
||||
|
Reference in New Issue
Block a user