comparison src/testdir/test55.in @ 4191:4dd43d6b3df7 v7.3.847

updated for version 7.3.847 Problem: Test 55 fails when messages are translated. Solution: Set language to C. (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Thu, 07 Mar 2013 14:50:34 +0100
parents 1810ee914648
children b43363a7b4c7
comparison
equal deleted inserted replaced
4190:ab567a07b5fd 4191:4dd43d6b3df7
1 Tests for List and Dictionary types. vim: set ft=vim : 1 Tests for List and Dictionary types. vim: set ft=vim :
2 2
3 STARTTEST 3 STARTTEST
4 :so small.vim 4 :so small.vim
5 :fun Test(...) 5 :fun Test(...)
6 :lang C
6 :" Creating List directly with different types 7 :" Creating List directly with different types
7 :let l = [1, 'as''d', [1, 2, function("strlen")], {'a': 1},] 8 :let l = [1, 'as''d', [1, 2, function("strlen")], {'a': 1},]
8 :$put =string(l) 9 :$put =string(l)
9 :$put =string(l[-1]) 10 :$put =string(l[-1])
10 :$put =string(l[-4]) 11 :$put =string(l[-4])