changeset 4801:3a4310e8fe72

test-demandimport: match upper-case hexadecimal
author Patrick Mezard <pmezard@gmail.com>
date Thu, 05 Jul 2007 19:11:38 +0200
parents 452d171a1b39
children 7549cd526b7f
files tests/test-demandimport
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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