diff options
author | w0rp <w0rp@users.noreply.github.com> | 2020-07-21 12:45:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-21 12:45:26 +0100 |
commit | 70ab831001dbe806fc5af3f33727f1fa32e3ff13 (patch) | |
tree | d9b9e252bb0f4085c17b6562b9afb9ba59254a9c /test/fixers | |
parent | c1c3bd922791f0e37ede679c99757c16e3e1b8a9 (diff) | |
parent | 5035281cb978d8fe6de7d91c1973a19f1a96bb3c (diff) | |
download | ale-70ab831001dbe806fc5af3f33727f1fa32e3ff13.zip |
Merge pull request #3119 from hsanson/2269-ktlint-stdin-support
Fix 2269 - use ktlint stdin.
Diffstat (limited to 'test/fixers')
-rw-r--r-- | test/fixers/test_ktlint_fixer_callback.vader | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/fixers/test_ktlint_fixer_callback.vader b/test/fixers/test_ktlint_fixer_callback.vader index 47b37788..ba01a409 100644 --- a/test/fixers/test_ktlint_fixer_callback.vader +++ b/test/fixers/test_ktlint_fixer_callback.vader @@ -21,9 +21,8 @@ Execute(The ktlint callback should return the correct default values): AssertEqual \ { \ 'command': ale#Escape('xxxinvalid') - \ . ' %t' + \ . ' --stdin' \ . ' --format', - \ 'read_temporary_file': 1, \ }, \ ale#fixers#ktlint#Fix(bufnr('')) @@ -37,8 +36,7 @@ Execute(The ktlint callback should include custom ktlint options): \ 'command': ale#Escape('xxxinvalid') \ . ' ' . g:ale_kotlin_ktlint_options \ . ' --ruleset /path/to/custom/ruleset.jar' - \ . ' %t' + \ . ' --stdin' \ . ' --format', - \ 'read_temporary_file': 1, \ }, \ ale#fixers#ktlint#Fix(bufnr('')) |