diff tests/hghave @ 9244:3f52a70959ce

tests/hghave: bzr114 checks for bzr >= 1.14 Everything but the implementation indicated that bzr114 also should be true for "or higher".
author Mads Kiilerich <mads@kiilerich.com>
date Sat, 25 Jul 2009 02:20:27 +0200
parents 6fce36336e42
children b236f34ec1e9
line wrap: on
line diff
--- a/tests/hghave	Fri Jul 24 15:53:40 2009 -0600
+++ b/tests/hghave	Sat Jul 25 02:20:27 2009 +0200
@@ -39,7 +39,7 @@
     try:
         import bzrlib
         return (bzrlib.__doc__ != None
-                and bzrlib.version_info[:2] == (1, 14))
+                and bzrlib.version_info[:2] >= (1, 14))
     except ImportError:
         return False