diff options
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_appleswiftformat_handler.vader (renamed from test/handler/test_swiftformat_handler.vader) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/handler/test_swiftformat_handler.vader b/test/handler/test_appleswiftformat_handler.vader index 3dcc4f1a..818bd9c5 100644 --- a/test/handler/test_swiftformat_handler.vader +++ b/test/handler/test_appleswiftformat_handler.vader @@ -1,10 +1,10 @@ Before: - runtime ale_linters/swift/swiftformat.vim + runtime ale_linters/swift/appleswiftformat.vim After: call ale#linter#Reset() -Execute(The swiftformat handler should parse lines correctly): +Execute(The appleswiftformat handler should parse lines correctly): AssertEqual \ [ \ { @@ -22,7 +22,7 @@ Execute(The swiftformat handler should parse lines correctly): \ 'text': 'remove 1 space' \ }, \ ], - \ ale_linters#swift#swiftformat#Handle(bufnr(''), [ - \ 'Sources/main.swift:4:21: warning: [DoNotUseSemicolons]: remove '';'' and move the next statement to the new line', - \ 'Sources/main.swift:3:12: warning: [Spacing]: remove 1 space', + \ ale_linters#swift#appleswiftformat#Handle(bufnr(''), [ + \ 'Sources/main.swift:4:21: warning: [DoNotUseSemicolons] remove '';'' and move the next statement to the new line', + \ 'Sources/main.swift:3:12: warning: [Spacing] remove 1 space', \ ]) |