Fixing test name for NetEqPerformanceTest

The naming did not follow conventions.

BUG=2859
TBR=kjellander@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/7829004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5469 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrik.lundin@webrtc.org
2014-01-31 11:46:34 +00:00
parent bdc5ed2e7d
commit 83aee8f450

View File

@@ -23,7 +23,7 @@ TEST(NetEqPerformanceTest, Run) {
kSimulationTimeMs, kLossPeriod, kDriftFactor);
ASSERT_GT(runtime, 0);
webrtc::test::PrintResult(
"NetEq-performance", "", "10_pl_10_drift", runtime, "ms", true);
"neteq_performance", "", "10_pl_10_drift", runtime, "ms", true);
}
// Runs a test with neither packet losses nor clock drift, to put
@@ -37,5 +37,5 @@ TEST(NetEqPerformanceTest, RunClean) {
kSimulationTimeMs, kLossPeriod, kDriftFactor);
ASSERT_GT(runtime, 0);
webrtc::test::PrintResult(
"NetEq-performance", "", "0_pl_0_drift", runtime, "ms", true);
"neteq_performance", "", "0_pl_0_drift", runtime, "ms", true);
}