summaryrefslogtreecommitdiff
path: root/tests/test_self.py
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-09-09 15:06:13 +0200
committerGitHub <noreply@github.com>2022-09-09 15:06:13 +0200
commit6524ba540cbfc4f11e924925faebe7e21f87942e (patch)
tree651c092d18df42eb18d0c066e5af8b996e0c46c7 /tests/test_self.py
parent2b6bd64d43ed109b1ee15f0993c010660cf56b13 (diff)
downloadpylint-git-6524ba540cbfc4f11e924925faebe7e21f87942e.tar.gz
Finish unfinished typing in non core directories (#7443)
* Add typing to setup calls in documentation folder * Finish some incomplete typing signatures in script * Add typing to unfinished signatures in the tests directory
Diffstat (limited to 'tests/test_self.py')
-rw-r--r--tests/test_self.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_self.py b/tests/test_self.py
index a375ae6f5..873bd2344 100644
--- a/tests/test_self.py
+++ b/tests/test_self.py
@@ -140,7 +140,7 @@ class TestRunTC:
with warnings.catch_warnings():
warnings.simplefilter("ignore")
Run(args, reporter=reporter)
- return cm.value.code
+ return int(cm.value.code)
@staticmethod
def _clean_paths(output: str) -> str: