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:
Jeff Tinker
2016-06-01 12:04:54 -07:00
parent b21a992969
commit 6219322a1e
2 changed files with 3 additions and 3 deletions

View File

@@ -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() {