diff --git a/test/completion/dynamic_arrays.py b/test/completion/dynamic_arrays.py index 5097c8b5..046b91ea 100644 --- a/test/completion/dynamic_arrays.py +++ b/test/completion/dynamic_arrays.py @@ -6,7 +6,7 @@ Checking for ``list.append`` and all the other possible array modifications. # ----------------- arr = [] for a in [1,2]: - arr.append(a); + arr.append(a) arr.append # should not cause an exception arr.append() # should not cause an exception @@ -16,7 +16,7 @@ arr[10] arr = [tuple()] for a in [1,2]: - arr.append(a); + arr.append(a) #? int() tuple() arr[10] diff --git a/test/completion/ordering.py b/test/completion/ordering.py index f3edebcc..e2d02d06 100644 --- a/test/completion/ordering.py +++ b/test/completion/ordering.py @@ -20,7 +20,7 @@ b temp a = 1 -temp = b; +temp = b b = a a = temp #? int()