Emptying the tank displays remaining time in min and sec.

This commit is contained in:
Milan Hanajik
2015-10-14 15:45:51 +02:00
parent 02da6ae134
commit d7c262c87a
10 changed files with 11 additions and 12 deletions
@@ -307,7 +307,7 @@ namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod
int remainingTime = Math.Max(estimtdEndTime - StateMachine.Time, 0);
if (remainingTime > 60)
{
Bridge.OnActivity(this, string.Format("{0} ... {1} min {2} s", Strings.Test_in_progress, remainingTime / 60, remainingTime % 60));
Bridge.OnActivity(this, string.Format("{0} ... {1} {2} {3} {4}", Strings.Test_in_progress, remainingTime / 60, "min", remainingTime % 60, Strings.sec));
}
else
{