# HG changeset patch # User Thomas Arendsen Hein # Date 1186829278 -7200 # Node ID 6e040f6c2c9ce1b961a77ab6834c228009f4e673 # Parent fc6106267198e9fac5b916f36953150326a14812 Print less scary message if the system supports symlinks: "Skipping test-no-symlinks: system supports symbolic links" instead of "Skipping test-no-symlinks: unexpected feature: symbolic links" diff --git a/tests/hghave b/tests/hghave --- a/tests/hghave +++ b/tests/hghave @@ -82,7 +82,7 @@ if __name__ == '__main__': if not negate and not check(): error('hghave: missing feature: ' + desc) elif negate and check(): - error('hghave: unexpected feature: ' + desc) + error('hghave: system supports %s' % desc) if failures != 0: sys.exit(1)