From f36a8ccb91cb71c1e4f15dc12cdecf3167eb1420 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 17 Jun 2020 11:37:49 +0200 Subject: Putting everything in Test and Suite class --- suites.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'suites.py') diff --git a/suites.py b/suites.py index 4c49ba0..b49dd28 100644 --- a/suites.py +++ b/suites.py @@ -78,11 +78,11 @@ def suite_redirection(test): test("cat a'b'c'd'e'f'g'h'i'j'k'l'm'n'o'p'q'r's't'u'v'w'x'y'z'", - files=["abcdefghijklmnopqrstuvzxyz"]) + files=["abcdefghijklmnopqrstuvwxyz"]) test('echo bonjour > a"b"c"d"e"f"g"h"i"j"k"l"m"n"o"p"q"r"s"t"u"v"w"x"y"z"', - files=["abcdefghijklmnopqrstuvzxyz"]) + files=["abcdefghijklmnopqrstuvwxyz"]) test('echo bonjour > a\'b\'c"d"e\'f\'g"h"i\'j\'k"l"m\'n\'o"p\'q\'r"s\'t\'u"v"w"x"y\'z\'', - files=["abcdefghijklmnopqrstuvzxyz"]) + files=["abcdefghijklmnopqrstuvwxyz"]) @suite def suite_edgecases(test): -- cgit