summaryrefslogtreecommitdiff
path: root/Lib/test/test_struct.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_struct.py')
-rw-r--r--Lib/test/test_struct.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py
index 0a78022b26..cfd5d472f0 100644
--- a/Lib/test/test_struct.py
+++ b/Lib/test/test_struct.py
@@ -493,7 +493,7 @@ class StructTest(unittest.TestCase):
def test_issue4228(self):
# Packing a long may yield either 32 or 64 bits
with _check_py3k_warnings(("struct integer overflow masking is deprecated",
- DeprecationWarning), quite=True):
+ DeprecationWarning), quiet=True):
x = struct.pack('L', -1)[:4]
self.assertEqual(x, '\xff'*4)