From 381d56a5ed54b26e76a15cc5318511c627f149ce Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Wed, 9 Jan 2019 11:39:05 +0100 Subject: [PATCH] isl_test_python.py: drop spurious semicolons The semicolons are harmless, but inconsistent with respect to the rest of the file. Signed-off-by: Sven Verdoolaege --- isl_test_python.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/isl_test_python.py b/isl_test_python.py index 0f5ed2da..f00d1989 100755 --- a/isl_test_python.py +++ b/isl_test_python.py @@ -370,7 +370,7 @@ def test_ast_build(): ast = build.node_from(schedule) assert(count_ast[0] == 2) - do_fail = True; + do_fail = True count_ast_fail = [0] def fail_inc_count_ast(node, build): count_ast_fail[0] += 1 @@ -392,11 +392,11 @@ def test_ast_build(): ast = build_copy.node_from(schedule) assert(count_ast[0] == 2) count_ast_fail[0] = 0 - do_fail = False; + do_fail = False ast = build.node_from(schedule) assert(count_ast_fail[0] == 2) - test_ast_build_unroll(schedule); + test_ast_build_unroll(schedule) # Test basic AST expression generation from an affine expression. # @@ -427,4 +427,4 @@ test_foreach() test_every() test_schedule_tree() test_ast_build() -test_ast_build_expr(); +test_ast_build_expr() -- 2.11.4.GIT