diff Tests/Toolbox.py @ 718:e1b7654fb58d attach-custom-data tip

merged find-refactoring -> attach-custom-data
author Alain Mazy <am@orthanc.team>
date Wed, 09 Oct 2024 11:07:09 +0200
parents 0322fda1834e
children
line wrap: on
line diff
--- a/Tests/Toolbox.py	Fri Oct 04 09:00:04 2024 +0200
+++ b/Tests/Toolbox.py	Wed Oct 09 11:07:09 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('.')