test-demandimport: match upper-case hexadecimal
authorPatrick Mezard <pmezard@gmail.com>
Thu, 05 Jul 2007 19:11:38 +0200
changeset 4802 3a4310e8fe72
parent 4747 452d171a1b39
child 4803 7549cd526b7f
test-demandimport: match upper-case hexadecimal
tests/test-demandimport
--- a/tests/test-demandimport	Wed Jul 04 09:20:56 2007 +0200
+++ b/tests/test-demandimport	Thu Jul 05 19:11:38 2007 +0200
@@ -8,7 +8,7 @@
 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