# HG changeset patch # User Patrick Mezard # Date 1183655498 -7200 # Node ID 3a4310e8fe72e4d1c0badc8d2537bc22189ace61 # Parent 452d171a1b39928970c302b20b4c9eb5e36f9296 test-demandimport: match upper-case hexadecimal diff -r 452d171a1b39 -r 3a4310e8fe72 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