summaryrefslogtreecommitdiff
path: root/Lib/test/test_applesingle.py
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2006-04-17 13:40:08 +0000
committerRonald Oussoren <ronaldoussoren@mac.com>2006-04-17 13:40:08 +0000
commit6c1074888e147c11ac0175e97594daa4f0625844 (patch)
tree6353ef17fa9f6da7a71f1cd752bf2871bb1e1078 /Lib/test/test_applesingle.py
parent749d070e93f0052bc9540c163d465a6c00eed4ed (diff)
downloadcpython-git-6c1074888e147c11ac0175e97594daa4f0625844.tar.gz
This patches fixes a number of byteorder problems in MacOSX specific code.
Diffstat (limited to 'Lib/test/test_applesingle.py')
-rw-r--r--Lib/test/test_applesingle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_applesingle.py b/Lib/test/test_applesingle.py
index 2a2d60ad32..d533f1abc0 100644
--- a/Lib/test/test_applesingle.py
+++ b/Lib/test/test_applesingle.py
@@ -15,8 +15,8 @@ AS_VERSION=0x00020000
dataforkdata = 'hello\r\0world\n'
resourceforkdata = 'goodbye\ncruel\0world\r'
-applesingledata = struct.pack("ll16sh", AS_MAGIC, AS_VERSION, "foo", 2) + \
- struct.pack("llllll", 1, 50, len(dataforkdata),
+applesingledata = struct.pack(">ll16sh", AS_MAGIC, AS_VERSION, "foo", 2) + \
+ struct.pack(">llllll", 1, 50, len(dataforkdata),
2, 50+len(dataforkdata), len(resourceforkdata)) + \
dataforkdata + \
resourceforkdata