From 5814af396074dfb2efe82f192a99c67209b01ff2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 30 Apr 2023 19:02:51 +0200 Subject: [PATCH] Test the strict canonicalization method first --- tests/start_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/start_test.py b/tests/start_test.py index 26ed171..000c7ec 100755 --- a/tests/start_test.py +++ b/tests/start_test.py @@ -216,8 +216,8 @@ def start_tests(test_dir, smtp_port, canonicalization): def main(): test_dir = pathlib.Path(__file__).parent.resolve() os.chdir(test_dir.parent) - start_tests(test_dir, DEFAULT_PORT, "relaxed/relaxed") start_tests(test_dir, DEFAULT_PORT, "simple/simple") + start_tests(test_dir, DEFAULT_PORT, "relaxed/relaxed") if __name__ == "__main__":