This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_email fails in refleak mode
Type: behavior Stage: resolved
Components: Library (Lib), Tests Versions: Python 3.3
process
Status: closed Resolution: duplicate
Dependencies: Superseder: test_email fails with -R
View: 12788
Assigned To: r.david.murray Nosy List: barry, pitrou, r.david.murray, skrah
Priority: normal Keywords:

Created on 2011-09-30 19:31 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg144700 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2011-09-30 19:31
$ ./python -m test -R 3:2 -uall test_email
[1/1] test_email
beginning 5 repetitions
12345
Warning -- sys.path was modified by test_email
test test_email failed -- Traceback (most recent call last):
  File "/home/antoine/cpython/default/Lib/test/test_email/test_policy.py", line 136, in test_overriden_register_defect_works
    self.assertEqual(my_policy.defects, [defect1])
AssertionError: Lists differ: [MyDefect('one',), MyDefect('t... != [MyDefect('one',)]

First differing element 0:
one
one

First list contains 2 additional elements.
First extra element 1:
two

- [MyDefect('one',), MyDefect('two',), MyDefect('one',)]
+ [MyDefect('one',)]

1 test failed:
    test_email
msg144717 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2011-10-01 06:39
I think this is a duplicate of #12788.
History
Date User Action Args
2022-04-11 14:57:22adminsetgithub: 57289
2011-10-01 06:39:34skrahsetstatus: open -> closed

superseder: test_email fails with -R

nosy: + skrah
messages: + msg144717
resolution: duplicate
stage: resolved
2011-09-30 19:34:15r.david.murraysetassignee: r.david.murray
2011-09-30 19:31:37pitroucreate