[PATCH] testbot: A couple of indentation fixes in WineTestBot::Log.

Francois Gouget fgouget at codeweavers.com
Fri Aug 10 13:09:25 CDT 2018


Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---
 testbot/lib/WineTestBot/Log.pm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/testbot/lib/WineTestBot/Log.pm b/testbot/lib/WineTestBot/Log.pm
index b73f005c3..5dc933add 100644
--- a/testbot/lib/WineTestBot/Log.pm
+++ b/testbot/lib/WineTestBot/Log.pm
@@ -123,15 +123,15 @@ sub Time()
 
 sub Elapsed($)
 {
-    my ($Start) = @_;
-    return sprintf("%0.2f", Time()-$Start);
+  my ($Start) = @_;
+  return sprintf("%0.2f", Time() - $Start);
 }
 
 sub PrettyElapsed($)
 {
-    my ($Start) = @_;
-    require WineTestBot::Utils;
-    return WineTestBot::Utils::DurationToString(Time()-$Start);
+  my ($Start) = @_;
+  require WineTestBot::Utils;
+  return WineTestBot::Utils::DurationToString(Time() - $Start);
 }
 
 1;
-- 
2.18.0



More information about the wine-devel mailing list