Skip to content

Commit

Permalink
fix(test): pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoshihou514 committed May 29, 2024
1 parent a9bb8a5 commit 1b52e15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/linter/pylint_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('pylint', function()
end_col = -1,
end_lnum = 0,
lnum = 0,
message = 'Missing module docstring [missing-module-docstring]',
message = 'Missing module docstring[missing-module-docstring]',
namespace = ns,
severity = 3,
source = 'pylint',
Expand All @@ -32,7 +32,7 @@ describe('pylint', function()
end_col = -1,
end_lnum = 0,
lnum = 0,
message = 'Missing function or method docstring [missing-function-docstring]',
message = 'Missing function or method docstring[missing-function-docstring]',
namespace = ns,
severity = 3,
source = 'pylint',
Expand All @@ -43,7 +43,7 @@ describe('pylint', function()
end_col = -1,
end_lnum = 0,
lnum = 0,
message = 'Disallowed name "foo" [disallowed-name]',
message = 'Disallowed name "foo"[disallowed-name]',
namespace = ns,
severity = 3,
source = 'pylint',
Expand All @@ -54,7 +54,7 @@ describe('pylint', function()
end_col = -1,
end_lnum = 0,
lnum = 0,
message = 'Either all return statements in a function should return an expression, or none of them should. [inconsistent-return-statements]',
message = 'Either all return statements in a function should return an expression, or none of them should.[inconsistent-return-statements]',
namespace = ns,
severity = 3,
source = 'pylint',
Expand Down

0 comments on commit 1b52e15

Please sign in to comment.