summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/zope/security/tests/test_proxy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zope/security/tests/test_proxy.py b/src/zope/security/tests/test_proxy.py
index d89e355..d2e1dbc 100644
--- a/src/zope/security/tests/test_proxy.py
+++ b/src/zope/security/tests/test_proxy.py
@@ -41,7 +41,7 @@ def _fmt_address(obj):
# the platform sprintf(buf, "%p", obj), which we cannot access from Python
# directly (and ctypes seems like overkill).
if sys.platform == 'win32':
- return '0x%08x' % id(obj)
+ return '0x%08X' % id(obj)
else:
return '0x%0x' % id(obj)