diff Tests/Toolbox.py @ 713:afa9cdd13880 find-refactoring tip

merge default -> find-refactoring
author Alain Mazy <am@orthanc.team>
date Fri, 04 Oct 2024 19:00:38 +0200
parents 0322fda1834e
children
line wrap: on
line diff
--- a/Tests/Toolbox.py	Fri Oct 04 19:00:25 2024 +0200
+++ b/Tests/Toolbox.py	Fri Oct 04 19:00:38 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('.')