aboutsummaryrefslogtreecommitdiff
path: root/src/suite
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-10-07 12:25:35 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-10-07 12:25:35 +0200
commit2a93ed69f7ee88c26b1edfb1f58a8f4d6d842bd4 (patch)
treee2ca0048b77c333bcaa4cb31c87c1af851520a8c /src/suite
parent06f6eeee3a7aaea881d7b399454762f65c8cec87 (diff)
downloadminishell_test-2a93ed69f7ee88c26b1edfb1f58a8f4d6d842bd4.tar.gz
minishell_test-2a93ed69f7ee88c26b1edfb1f58a8f4d6d842bd4.tar.bz2
minishell_test-2a93ed69f7ee88c26b1edfb1f58a8f4d6d842bd4.zip
Removing cursed cd test
Diffstat (limited to 'src/suite')
-rw-r--r--src/suite/suite.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/suite/suite.py b/src/suite/suite.py
index 91cfaa4..61f1cbc 100644
--- a/src/suite/suite.py
+++ b/src/suite/suite.py
@@ -6,7 +6,7 @@
# By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/07/15 18:24:29 by charles #+# #+# #
-# Updated: 2020/10/06 17:04:25 by cacharle ### ########.fr #
+# Updated: 2020/10/06 17:10:43 by cacharle ### ########.fr #
# #
# ############################################################################ #
@@ -94,12 +94,11 @@ class Suite:
if config.VERBOSE_LEVEL == 0:
print(self.name + ": ", end="")
else:
- print("{}{} {:#<{width}}{}".format(
+ print("{}{:#^{width}}{}".format(
self.BLUE_CHARS,
- "#" * (config.TERM_COLS // 2 - 1),
- self.name + " ",
+ " " + self.name + " ",
self.CLOSE_CHARS,
- width=config.TERM_COLS // 2
+ width=config.TERM_COLS
))
for t in self.tests:
t.run()