aboutsummaryrefslogtreecommitdiffstats
path: root/test/iptc.py
diff options
context:
space:
mode:
authorOlivier Tilloy <olivier@tilloy.net>2010-01-05 10:11:06 +0100
committerOlivier Tilloy <olivier@tilloy.net>2010-01-05 10:11:06 +0100
commit00d1b9cbd90ced907046e1a551ebe1790e584081 (patch)
treeb6006259161f4f0250dca20de0bf1550ea80bb99 /test/iptc.py
parent9a3c03d7e6c1281b14b487d05120ad8054a1bab9 (diff)
parentfc8520286f8ba26f1d4b6269b776387a82d37d55 (diff)
downloadpyexiv2-00d1b9cbd90ced907046e1a551ebe1790e584081.tar.gz
Fix compilation against libexiv2 0.19.
Diffstat (limited to 'test/iptc.py')
-rw-r--r--test/iptc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/iptc.py b/test/iptc.py
index dcbdd17..2510067 100644
--- a/test/iptc.py
+++ b/test/iptc.py
@@ -169,7 +169,7 @@ class TestIptcTag(unittest.TestCase):
def test_convert_to_python_undefined(self):
# Valid values
- tag = IptcTag('Iptc.Envelope.CharacterSet')
+ tag = IptcTag('Iptc.Application2.Preview')
self.assertEqual(tag.type, 'Undefined')
self.assertEqual(tag._convert_to_python('Some binary data.'),
'Some binary data.')
@@ -178,7 +178,7 @@ class TestIptcTag(unittest.TestCase):
def test_convert_to_string_undefined(self):
# Valid values
- tag = IptcTag('Iptc.Envelope.CharacterSet')
+ tag = IptcTag('Iptc.Application2.Preview')
self.assertEqual(tag.type, 'Undefined')
self.assertEqual(tag._convert_to_string('Some binary data.'),
'Some binary data.')