diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2009-02-04 08:22:36 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2009-02-04 08:22:36 +0100 |
commit | 2b3f22c1710a96de655af3cb98a8191baeb802be (patch) | |
tree | 875389009aa4d41c6d521f4e0666bf36629bf052 /unittest/xmp.py | |
parent | 9f315477dacd0df820a6912e7218f63e7601ccec (diff) | |
download | pyexiv2-2b3f22c1710a96de655af3cb98a8191baeb802be.tar.gz |
Fixed an invalid Date conversion.
Diffstat (limited to 'unittest/xmp.py')
-rw-r--r-- | unittest/xmp.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/unittest/xmp.py b/unittest/xmp.py index d8293fa..da81e03 100644 --- a/unittest/xmp.py +++ b/unittest/xmp.py @@ -104,8 +104,6 @@ class TestXmpTag(unittest.TestCase): self.failUnlessRaises(XmpValueError, XmpTag._convert_to_python, '2009-10-32', xtype) self.failUnlessRaises(XmpValueError, XmpTag._convert_to_python, '2009-10-30T25:12Z', xtype) self.failUnlessRaises(XmpValueError, XmpTag._convert_to_python, '2009-10-30T23:67Z', xtype) - - # FIXME: the following test should not fail: having hours without minutes is not a valid syntax. self.failUnlessRaises(XmpValueError, XmpTag._convert_to_python, '2009-01-22T21', xtype) def test_convert_to_python_integer(self): |