diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | spec/loading_spec.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 8d6645bd..92020c6c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: ruby rvm: - - 1.9.3 + - 2.6 sudo: false addons: apt: diff --git a/spec/loading_spec.rb b/spec/loading_spec.rb index 14fbd64c..6e1cbaae 100644 --- a/spec/loading_spec.rb +++ b/spec/loading_spec.rb @@ -11,7 +11,7 @@ describe "My Vim plugin" do extensions.each do |ext| it "should parse #{ext} file" do - Timeout::timeout(15) do + Timeout::timeout(20) do write_file "#{ext}", "" vim.edit "#{ext}" vim.insert "sample" |