diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-11-02 14:08:38 +0100 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-11-02 14:08:38 +0100 | 
| commit | 6a750402787dfc1f39a9ad347f2d78ae1c94c52c (patch) | |
| tree | b23fd5f815bb3565e92254dbfc3abe4285510952 /test | |
| parent | c514b0ec655b23e7804eb18df04daa863d973f32 (diff) | |
[utils] unified_strdate: Return None if the date format can't be recognized (fixes #7340)
This issue was introduced with ae12bc3ebb4cb377c2b4337ec255e652b36f5143, it returned 'None'.
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_utils.py | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_utils.py b/test/test_utils.py index 3298315d2..01829f71e 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -236,6 +236,7 @@ class TestUtil(unittest.TestCase):              unified_strdate('2/2/2015 6:47:40 PM', day_first=False),              '20150202')          self.assertEqual(unified_strdate('25-09-2014'), '20140925') +        self.assertEqual(unified_strdate('UNKNOWN DATE FORMAT'), None)      def test_find_xpath_attr(self):          testxml = '''<root>  | 
