diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-01-27 11:01:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-27 11:01:14 +0000 |
commit | f03370e1833cb200c43368eb22d930f3d76d56fc (patch) | |
tree | 9599c8b0c9ee4b943d66b749b551743192361288 /test | |
parent | d882c434a1c8f3814da51340a38fdcd5659e76bd (diff) | |
parent | 86af4be0d0ca484c8549ea331f07732680784cd9 (diff) | |
download | ale-f03370e1833cb200c43368eb22d930f3d76d56fc.zip |
Merge pull request #2207 from pmacosta/master
Fixed parsing of pydocstyle errors
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_pydocstyle_handler.vader | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/handler/test_pydocstyle_handler.vader b/test/handler/test_pydocstyle_handler.vader index d155dc9a..cfb75307 100644 --- a/test/handler/test_pydocstyle_handler.vader +++ b/test/handler/test_pydocstyle_handler.vader @@ -66,7 +66,7 @@ Execute(Basic pydocstyle warnings should be handled): \ ], \ ale_linters#python#pydocstyle#Handle(bufnr(''), [ \ 'Checking file ' . fnamemodify(bufname(bufnr('')), ':p') . '.', - \ ale#Escape(fnamemodify(bufname(bufnr('')), ':t')) . ':1 at module level:', + \ './mydir/myfile.py:1 at module level:', \ ' D100: Missing docstring in public module', \ '', \ ' All modules should normally have docstrings. [...] all functions and', @@ -80,7 +80,7 @@ Execute(Basic pydocstyle warnings should be handled): \ ' 1: # 2: 3: s 4: a 5: m 6: p 7: l ...', \ '', \ '', - \ ale#Escape(fnamemodify(bufname(bufnr('')), ':t')) . ':4 in public function `main`:', + \ 'C:\mydir\myfile.py:4 in public function `main`:', \ ' D205: 1 blank line required between summary line and description (found 0)', \ '', \ ' Multi-line docstrings consist of a summary line just like a one-line', @@ -92,7 +92,7 @@ Execute(Basic pydocstyle warnings should be handled): \ ' 3: d 4: e 5: f 6: 7: m 8: a 9: i ...', \ '', \ '', - \ ale#Escape(fnamemodify(bufname(bufnr('')), ':t')) . ':4 in public function `main`:', + \ 'myfile.py:4 in public function `main`:', \ ' D400: First line should end with a period (not ''e'')', \ '', \ ' The [first line of a] docstring is a phrase ending in a period.', |