# HG changeset patch # User Alain Mazy # Date 1728060313 -7200 # Node ID 0322fda1834e57e8dc97f824657e95f1a617b5e6 # Parent f21aedbf34f73c0176644b624ab9ac284821ccd8 fix diff -r f21aedbf34f7 -r 0322fda1834e Tests/Toolbox.py --- a/Tests/Toolbox.py Fri Oct 04 14:59:56 2024 +0200 +++ b/Tests/Toolbox.py Fri Oct 04 18:45:13 2024 +0200 @@ -397,7 +397,7 @@ def IsPluginVersionAbove(orthanc, plugin, major, minor, revision): v = DoGet(orthanc, '/plugins/%s' % plugin)['Version'] - if v == 'mainline': + if v.startswith('mainline'): return True else: tmp = v.split('.')