summaryrefslogtreecommitdiffstats
path: root/runtime/doc/testing.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-07-10 22:00:53 +0200
committerBram Moolenaar <Bram@vim.org>2020-07-10 22:00:53 +0200
commit7ff78465f7057a672a6de0d75d56286da253501b (patch)
treee35e18d5462fab10968567970cb14cfe92a82bb7 /runtime/doc/testing.txt
parenta7eedf317a806fceec1ddd8f9bebed6e00be0ed2 (diff)
Update runtime files
Diffstat (limited to 'runtime/doc/testing.txt')
-rw-r--r--runtime/doc/testing.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/doc/testing.txt b/runtime/doc/testing.txt
index 7ac2389eb8..b7825b90f9 100644
--- a/runtime/doc/testing.txt
+++ b/runtime/doc/testing.txt
@@ -1,4 +1,4 @@
-*testing.txt* For Vim version 8.2. Last change: 2020 Jun 15
+*testing.txt* For Vim version 8.2. Last change: 2020 Jul 09
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -264,7 +264,8 @@ assert_equal({expected}, {actual} [, {msg}])
< Will result in a string to be added to |v:errors|:
test.vim line 12: Expected 'foo' but got 'bar' ~
- Can also be used as a |method|: >
+ Can also be used as a |method|, the base is passed as the
+ second argument: >
mylist->assert_equal([1, 2, 3])
< *assert_equalfile()*