In the current Trunk Version r1170 of TestResultsUtils.as
TestResultsUtils.as
lines 691 - 693
var s2cQueue:Number = (TestResults.ndt_test_results::c2sSpeed
- TestResults.ndt_test_results::sc2sSpeed)
/ TestResults.ndt_test_results::c2sSpeed;
the wrong variables are used to compute the packet queueing for s2c test
Code should be:
var s2cQueue:Number = (TestResults.ndt_test_results::s2cSpeed
- TestResults.ndt_test_results::ss2cSpeed)
/ TestResults.ndt_test_results::s2cSpeed;
Original issue reported on code.google.com by bchas...@gmail.com on 22 Nov 2014 at 11:41
Original issue reported on code.google.com by
bchas...@gmail.com
on 22 Nov 2014 at 11:41