changeset 704:cbd103d8c1f3 find-refactoring

merge default -> find-refactoring
author Alain Mazy <am@orthanc.team>
date Fri, 04 Oct 2024 08:59:06 +0200
parents bdb9763d53ff (current diff) 8b255268d79b (diff)
children 5137a2c89991
files
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Tests/Toolbox.py	Thu Sep 26 17:58:40 2024 +0200
+++ b/Tests/Toolbox.py	Fri Oct 04 08:59:06 2024 +0200
@@ -344,7 +344,7 @@
 def IsOrthancVersionAbove(orthanc, major, minor, revision):
     v = DoGet(orthanc, '/system')['Version']
 
-    if v == 'mainline':
+    if v.startswith('mainline'):
         return True
     else:
         tmp = v.split('.')