test-demandimport: match upper-case hexadecimal
authorPatrick Mezard <pmezard@gmail.com>
Thu, 05 Jul 2007 19:11:38 +0200
changeset 4801 3a4310e8fe72
parent 4798 452d171a1b39
child 4802 7549cd526b7f
test-demandimport: match upper-case hexadecimal
tests/test-demandimport
--- 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