diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-07-10 22:00:53 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-07-10 22:00:53 +0200 |
commit | 7ff78465f7057a672a6de0d75d56286da253501b (patch) | |
tree | e35e18d5462fab10968567970cb14cfe92a82bb7 /runtime/doc/testing.txt | |
parent | a7eedf317a806fceec1ddd8f9bebed6e00be0ed2 (diff) | |
download | vim-git-7ff78465f7057a672a6de0d75d56286da253501b.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/doc/testing.txt')
-rw-r--r-- | runtime/doc/testing.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/doc/testing.txt b/runtime/doc/testing.txt index 7ac2389eb..b7825b90f 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()* |