Skip to content

Commit

Permalink
Fix separator discrepancy
Browse files Browse the repository at this point in the history
  • Loading branch information
lloeki committed May 29, 2024
1 parent ebd9023 commit fd80bcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/linter/test_ruby_steep.vader
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Execute(Should lint files below top steep root):
call ale#test#SetFilename('../test-files/ruby/nested/foo/one/dummy.rb')
AssertLinter 'steep', ale#Escape('steep')
\ . ' check '
\ . ' one/dummy.rb'
\ . ' one' . (has('win32') ? '\' : '/') . 'dummy.rb'

Execute(Should lint files at nested steep root):
call ale#test#SetFilename('../test-files/ruby/nested/foo/two/dummy.rb')
Expand All @@ -66,4 +66,4 @@ Execute(Should lint files below nested steep root):
call ale#test#SetFilename('../test-files/ruby/nested/foo/two/three/dummy.rb')
AssertLinter 'steep', ale#Escape('steep')
\ . ' check '
\ . ' three/dummy.rb'
\ . ' three' . (has('win32') ? '\' : '/') . 'dummy.rb'

0 comments on commit fd80bcf

Please sign in to comment.