summaryrefslogtreecommitdiffstats
path: root/src/testdir/test87.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-03-12 15:26:40 +0100
committerBram Moolenaar <Bram@vim.org>2014-03-12 15:26:40 +0100
commit038e5d47660b1b6ffe9005a4bcc51c88a3b38416 (patch)
tree306d5b15247649d140905f75e5407e640ecdf04e /src/testdir/test87.in
parent4064e24a0f7581b47dcc9de9e24891d295d4f6e2 (diff)
updated for version 7.4.195v7.4.195
Problem: Python tests fail. Solution: Change "then" to "than" in more places. (Dominique Pelle, Taro Muraoka)
Diffstat (limited to 'src/testdir/test87.in')
-rw-r--r--src/testdir/test87.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test87.in b/src/testdir/test87.in
index 1515a906bb..9111a499bc 100644
--- a/src/testdir/test87.in
+++ b/src/testdir/test87.in
@@ -664,7 +664,7 @@ py3 << EOF
# Check GCing iterator that was not fully exhausted
i = iter(vim.buffers)
cb.append('i:' + str(next(i)))
-# and also check creating more then one iterator at a time
+# and also check creating more than one iterator at a time
i2 = iter(vim.buffers)
cb.append('i2:' + str(next(i2)))
cb.append('i:' + str(next(i)))