diff tests/test-demandimport @ 4801:3a4310e8fe72

test-demandimport: match upper-case hexadecimal
author Patrick Mezard <pmezard@gmail.com>
date Thu, 05 Jul 2007 19:11:38 +0200
parents e3afa670e484
children
line wrap: on
line diff
--- a/tests/test-demandimport
+++ b/tests/test-demandimport
@@ -8,7 +8,7 @@ import re
 rsub = re.sub
 def f(obj):
     l = repr(obj)
-    l = rsub("0x[0-9a-f]+", "0x?", l)
+    l = rsub("0x[0-9a-fA-F]+", "0x?", l)
     l = rsub("from '.*'", "from '?'", l)
     return l