diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2010-01-05 10:11:06 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2010-01-05 10:11:06 +0100 |
commit | 00d1b9cbd90ced907046e1a551ebe1790e584081 (patch) | |
tree | b6006259161f4f0250dca20de0bf1550ea80bb99 /test/iptc.py | |
parent | 9a3c03d7e6c1281b14b487d05120ad8054a1bab9 (diff) | |
parent | fc8520286f8ba26f1d4b6269b776387a82d37d55 (diff) | |
download | pyexiv2-00d1b9cbd90ced907046e1a551ebe1790e584081.tar.gz |
Fix compilation against libexiv2 0.19.
Diffstat (limited to 'test/iptc.py')
-rw-r--r-- | test/iptc.py | 4 |
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.') |