Fix the order of test case name and test name
In the unit tests, the test case name and test name are logged, but currently the test case and name are reversed. This CL orders them correctly, so instead of, e.g. CheckHDCPCapability.OEMCryptoClientTest, we get OEMCryptoClientTest.CheckHDCPCapability as intended. Merge of go/wvgerrit/18045 from widevine repo Change-Id: I20bb2d47de0c84b3a1f00bb46af5ed0a45d7fc56
This commit is contained in:
@@ -1289,7 +1289,7 @@ class OEMCryptoClientTest : public ::testing::Test {
|
||||
wvcdm::g_cutoff = wvcdm::LOG_INFO;
|
||||
const ::testing::TestInfo* const test_info =
|
||||
::testing::UnitTest::GetInstance()->current_test_info();
|
||||
LOGD("Running test %s.%s", test_info->name(), test_info->test_case_name());
|
||||
LOGD("Running test %s.%s", test_info->test_case_name(), test_info->name());
|
||||
}
|
||||
|
||||
virtual void TearDown() {
|
||||
|
||||
Reference in New Issue
Block a user