From 7fe656f4b9ab594035f7c0b6c0c68ca41871daca Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 1 Aug 2018 16:30:19 -0400 Subject: Add 005_more_imports.ts And run check_output_test in order. --- tools/check_output_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/check_output_test.py') diff --git a/tools/check_output_test.py b/tools/check_output_test.py index 84bc31580..af385eb36 100755 --- a/tools/check_output_test.py +++ b/tools/check_output_test.py @@ -14,10 +14,10 @@ tests_path = os.path.join(root_path, "tests") def check_output_test(deno_exe_filename): assert os.path.isfile(deno_exe_filename) - outs = [ + outs = sorted([ filename for filename in os.listdir(tests_path) if filename.endswith(".out") - ] + ]) assert len(outs) > 1 tests = [(os.path.splitext(filename)[0], filename) for filename in outs] for (script, out_filename) in tests: -- cgit v1.2.3