summaryrefslogtreecommitdiff
path: root/tests/unittest_nodes.py
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-17 23:22:06 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-21 19:06:16 +0100
commitb47b56dedba6c845925076d0dd07e373dac03d3a (patch)
tree2cbeae10b6bba0d560588d9ab188b950034f7c1f /tests/unittest_nodes.py
parent92cb458aa5c481877a57448299f784b83533be03 (diff)
downloadastroid-git-b47b56dedba6c845925076d0dd07e373dac03d3a.tar.gz
Remove redundant open mode 'r' in opens
Diffstat (limited to 'tests/unittest_nodes.py')
-rw-r--r--tests/unittest_nodes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unittest_nodes.py b/tests/unittest_nodes.py
index 7d53f6ac..488864f7 100644
--- a/tests/unittest_nodes.py
+++ b/tests/unittest_nodes.py
@@ -118,14 +118,14 @@ class AsStringTest(resources.SysPathSetup, unittest.TestCase):
"""check as_string on a whole module prepared to be returned identically
"""
module = resources.build_file("data/module.py", "data.module")
- with open(resources.find("data/module.py"), "r") as fobj:
+ with open(resources.find("data/module.py")) as fobj:
self.assertMultiLineEqual(module.as_string(), fobj.read())
def test_module2_as_string(self):
"""check as_string on a whole module prepared to be returned identically
"""
module2 = resources.build_file("data/module2.py", "data.module2")
- with open(resources.find("data/module2.py"), "r") as fobj:
+ with open(resources.find("data/module2.py")) as fobj:
self.assertMultiLineEqual(module2.as_string(), fobj.read())
def test_as_string(self):