From 1c6ac415c4d44c5977755b6f2f039fa925c8abe9 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 27 Jun 2019 19:21:45 +0200 Subject: [PATCH] pve5to6: align summary counters Signed-off-by: Thomas Lamprecht --- PVE/CLI/pve5to6.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PVE/CLI/pve5to6.pm b/PVE/CLI/pve5to6.pm index 324ea524..e73e2b62 100644 --- a/PVE/CLI/pve5to6.pm +++ b/PVE/CLI/pve5to6.pm @@ -414,8 +414,8 @@ __PACKAGE__->register_method ({ check_misc(); print_header("SUMMARY"); - print colored("PASSED: $counters->{pass}\n", 'green'); - print "SKIPPED: $counters->{skip}\n"; + print colored("PASSED: $counters->{pass}\n", 'green'); + print "SKIPPED: $counters->{skip}\n"; print colored("WARNINGS: $counters->{warn}\n", 'yellow'); print colored("FAILURES: $counters->{fail}\n", 'red');