From 7f7451813ce60292f5ff735a601f7ef0bce99553 Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Tue, 10 Mar 2015 10:18:30 +0100 Subject: [PATCH] Use an up to date vim in tests. --- test/test | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test b/test/test index 453aa9b..6da1262 100755 --- a/test/test +++ b/test/test @@ -1,9 +1,10 @@ #!/usr/bin/env bash +VIM="/Applications/MacVim.app/Contents/MacOS/Vim -v" # Execute the tests. for testcase in test*.vim; do - vim -N -u NONE -S $testcase -c 'quit!' + $VIM -N -u NONE -S $testcase -c 'quit!' git reset HEAD fixture.txt > /dev/null git checkout fixture.txt