summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornozzy123nozzy <nozzy123nozzy@gmail.com>2021-10-25 15:44:56 +0900
committerTakahide Nojima <nozzy123nozzy@gmail.com>2021-10-26 15:01:23 +0000
commit91fc4613453ab171edd11e92359954bd327dc49d (patch)
tree82bf996ca1c9d6d8b9525c9eeb68b8aa94307c68
parent30a6c5864d762b9500570a9d944f321b01584206 (diff)
downloadpylint-git-91fc4613453ab171edd11e92359954bd327dc49d.tar.gz
Update tests/data/property_pattern.py
Remove the "main" function because this is meaningless for testing. Co-authored-by: Andreas Finkler <3929834+DudeNr33@users.noreply.github.com>
-rw-r--r--tests/data/property_pattern.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/data/property_pattern.py b/tests/data/property_pattern.py
index e6bb3b9c9..2828922f0 100644
--- a/tests/data/property_pattern.py
+++ b/tests/data/property_pattern.py
@@ -14,8 +14,3 @@ class PropertyPatterns:
def __init__(self):
self._prop1=1
self._prop2=2
-
-if __name__ == "__main__":
- prop=PropertyPatterns()
- assert(prop.prop1==2)
- assert(prop.prop2==4)