summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorchason <chason@gmail.com>2018-07-25 19:01:28 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2018-07-25 19:01:28 (GMT)
commit48ed88a93bb0bbeaae9a4cfaa533e4edf13bcb51 (patch)
tree58759edab2e0c4c5924644366402dd76f39bfe68 /Misc/NEWS.d
parent60b04c9f6fb87522a62ab6b95db9f8a09aef42d4 (diff)
downloadcpython-48ed88a93bb0bbeaae9a4cfaa533e4edf13bcb51.zip
cpython-48ed88a93bb0bbeaae9a4cfaa533e4edf13bcb51.tar.gz
cpython-48ed88a93bb0bbeaae9a4cfaa533e4edf13bcb51.tar.bz2
bpo-32663 Make SMTPUTF8SimTests run (#5314)
Enable and fix SMTPUTF8SimTests in test_smtplib. The tests for SMTPUTF8SimTests in test_smtplib.py were not actually being run because test_smtplib was still using the 'test_main' pattern, and the class was never added to test_main. Additionally, one of the tests needed to be moved to the non-UTF8 server class because it relies on the server not being UTF-8 compatible (and it had a bug in in).
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Tests/2018-01-25-18-10-47.bpo-32663.IKDsqu.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2018-01-25-18-10-47.bpo-32663.IKDsqu.rst b/Misc/NEWS.d/next/Tests/2018-01-25-18-10-47.bpo-32663.IKDsqu.rst
new file mode 100644
index 0000000..8357284
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2018-01-25-18-10-47.bpo-32663.IKDsqu.rst
@@ -0,0 +1,2 @@
+Making sure the `SMTPUTF8SimTests` class of tests gets run in
+test_smtplib.py.