summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_nntplib.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-11-02 22:31:52 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-11-02 22:31:52 (GMT)
commitf80b3f72c6c486207deeda259579cba2a28bde93 (patch)
tree563c01636238b8ce59875640d21a0f3d008d30e4 /Lib/test/test_nntplib.py
parente159422ce9cd6cedff7b45eef5a00d7e6a2aa90c (diff)
downloadcpython-f80b3f72c6c486207deeda259579cba2a28bde93.zip
cpython-f80b3f72c6c486207deeda259579cba2a28bde93.tar.gz
cpython-f80b3f72c6c486207deeda259579cba2a28bde93.tar.bz2
Issue #10280: NNTP.nntp_version should reflect the highest version
advertised by the server.
Diffstat (limited to 'Lib/test/test_nntplib.py')
-rw-r--r--Lib/test/test_nntplib.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_nntplib.py b/Lib/test/test_nntplib.py
index dd100ef..e62b240 100644
--- a/Lib/test/test_nntplib.py
+++ b/Lib/test/test_nntplib.py
@@ -558,7 +558,7 @@ class NNTPv2Handler(NNTPv1Handler):
def handle_CAPABILITIES(self):
self.push_lit("""\
101 Capability list:
- VERSION 2
+ VERSION 2 3
IMPLEMENTATION INN 2.5.1
AUTHINFO USER
HDR
@@ -935,7 +935,7 @@ class NNTPv2Tests(NNTPv1v2TestsMixin, MockedNNTPTestsMixin, unittest.TestCase):
def test_caps(self):
caps = self.server.getcapabilities()
self.assertEqual(caps, {
- 'VERSION': ['2'],
+ 'VERSION': ['2', '3'],
'IMPLEMENTATION': ['INN', '2.5.1'],
'AUTHINFO': ['USER'],
'HDR': [],
@@ -945,7 +945,7 @@ class NNTPv2Tests(NNTPv1v2TestsMixin, MockedNNTPTestsMixin, unittest.TestCase):
'POST': [],
'READER': [],
})
- self.assertEqual(self.server.nntp_version, 2)
+ self.assertEqual(self.server.nntp_version, 3)
class MiscTests(unittest.TestCase):