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:
Jablonski, Mateusz
2020-03-17 09:40:17 +01:00
committed by sys_ocldev
parent d6cc7ee650
commit 7de51d537f

View File

@@ -64,11 +64,11 @@ class CCustomEventListener : public ::testing::TestEventListener {
lastTest = ss.str(); lastTest = ss.str();
} }
void OnTestPartResult(const ::testing::TestPartResult &test_part_result) override { void OnTestPartResult(const ::testing::TestPartResult &testPartResult) override {
if (test_part_result.failed()) { if (testPartResult.failed()) {
printf("\n"); printf("\n");
} }
_listener->OnTestPartResult(test_part_result); _listener->OnTestPartResult(testPartResult);
} }
void OnTestEnd(const ::testing::TestInfo &testCase) override { void OnTestEnd(const ::testing::TestInfo &testCase) override {