Issue 8768: The checkempty_symmetric_difference test is never called (original) (raw)

Issue8768

Created on 2010-05-19 16:54 by stutzbach, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
missing-test.patch stutzbach,2010-05-19 16:54
Messages (2)
msg106080 - (view) Author: Daniel Stutzbach (stutzbach) (Python committer) Date: 2010-05-19 16:54
In test_set.py (and test_sets.py in 2.x), there's a method named "checkempty_symmetric_difference". It should be named "test_checkempty_symmetric_difference" so that it will actually be called as a test. It's not referenced anywhere else. The test verifies the XOR identity: some_set == some_set ^ empty_set. Patch against trunk attached.
msg112270 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-08-01 06:45
Thanks, fixed in r83386.
History
Date User Action Args
2022-04-11 14:57:01 admin set github: 53014
2010-08-01 06:45:02 georg.brandl set status: open -> closednosy: + georg.brandlmessages: + resolution: fixed
2010-05-19 16:54:59 stutzbach create