diff options
| author | Zachary Ware <zachary.ware@gmail.com> | 2015-05-13 05:34:39 (GMT) |
|---|---|---|
| committer | Zachary Ware <zachary.ware@gmail.com> | 2015-05-13 05:34:39 (GMT) |
| commit | 84d3e764d717a5c31af1a282463425a24f83f1de (patch) | |
| tree | 5c47e8368e8aa1078e9fc78385ac25d33aa5a5f0 | |
| parent | d9b25bb511f6d178bbdc533babde92135c9c6ffa (diff) | |
| download | cpython-84d3e764d717a5c31af1a282463425a24f83f1de.zip cpython-84d3e764d717a5c31af1a282463425a24f83f1de.tar.gz cpython-84d3e764d717a5c31af1a282463425a24f83f1de.tar.bz2 | |
Issue #23911: Fix ctypes test on Windows.
Comparing equality of list and tuple is always False.
| -rw-r--r-- | Lib/ctypes/test/test_values.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/ctypes/test/test_values.py b/Lib/ctypes/test/test_values.py index 9a40b71..9551e7a 100644 --- a/Lib/ctypes/test/test_values.py +++ b/Lib/ctypes/test/test_values.py @@ -62,10 +62,10 @@ class Win_ValuesTestCase(unittest.TestCase): # found, but don't worry about its size too much. The same # applies to _frozen_importlib_external. bootstrap_seen = [] - bootstrap_expected = ( + bootstrap_expected = [ b'_frozen_importlib', b'_frozen_importlib_external', - ) + ] for entry in ft: # This is dangerous. We *can* iterate over a pointer, but # the loop will not terminate (maybe with an access |
