summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ipaddress.py
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-05-26 15:03:25 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2012-05-26 15:03:25 (GMT)
commit2c58910d3dd8d13622f774e53c28b6de8b36a920 (patch)
tree67786c56c1de784b4c48ce272ba55d386f403154 /Lib/test/test_ipaddress.py
parentaff73f91cce05f08f0654698008012359c17f87b (diff)
downloadcpython-2c58910d3dd8d13622f774e53c28b6de8b36a920.zip
cpython-2c58910d3dd8d13622f774e53c28b6de8b36a920.tar.gz
cpython-2c58910d3dd8d13622f774e53c28b6de8b36a920.tar.bz2
Issue #14814: Clean out an obsolete property and method from ipaddress Network objects
Diffstat (limited to 'Lib/test/test_ipaddress.py')
-rw-r--r--Lib/test/test_ipaddress.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_ipaddress.py b/Lib/test/test_ipaddress.py
index 5c89681..fd6c38c 100644
--- a/Lib/test/test_ipaddress.py
+++ b/Lib/test/test_ipaddress.py
@@ -390,7 +390,7 @@ class IpaddrUnitTest(unittest.TestCase):
self.assertRaises(ValueError, list,
self.ipv4_interface.network.subnets(-1))
self.assertRaises(ValueError, list,
- self.ipv4_network.network.subnets(-1))
+ self.ipv4_network.subnets(-1))
self.assertRaises(ValueError, list,
self.ipv6_interface.network.subnets(-1))
self.assertRaises(ValueError, list,