X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/32f6a72c041ca49e7131c6a84c38e94960e8ef7b..8c347a6f4591e75a16cca9350cffde5cfaefd25a:/spec/indent/cython_spec.rb diff --git a/spec/indent/cython_spec.rb b/spec/indent/cython_spec.rb index 933801d..03dcbb2 100644 --- a/spec/indent/cython_spec.rb +++ b/spec/indent/cython_spec.rb @@ -23,14 +23,14 @@ describe "vim for cython" do describe "when using a cdef function definition" do it "indents shiftwidth spaces" do vim.feedkeys 'icdef long_function_name(\arg' - indent.should == shiftwidth * 2 + indent.should == shiftwidth end end describe "when using a cpdef function definition" do it "indents shiftwidth spaces" do vim.feedkeys 'icpdef long_function_name(\arg' - indent.should == shiftwidth * 2 + indent.should == shiftwidth end end end