@@ -546,7 +546,7 @@ def test_12_nblast_queries(self):
546546 if success and result :
547547 count = result .get ('count' , 0 )
548548 print (f" └─ Found { count } NBLASTexp matches" + (", returned 10" if count > 10 else "" ))
549- self .assertLess (duration , self .THRESHOLD_MEDIUM , "SimilarMorphologyToPartOf exceeded threshold" )
549+ self .assertLess (duration , self .THRESHOLD_SLOW , "SimilarMorphologyToPartOf exceeded threshold" )
550550
551551 # SimilarMorphologyToPartOfexp - Reverse NBLASTexp
552552 result , duration , success = self ._time_query (
@@ -560,7 +560,7 @@ def test_12_nblast_queries(self):
560560 if success and result :
561561 count = result .get ('count' , 0 )
562562 print (f" └─ Found { count } reverse NBLASTexp matches" + (", returned 10" if count > 10 else "" ))
563- self .assertLess (duration , self .THRESHOLD_MEDIUM , "SimilarMorphologyToPartOfexp exceeded threshold" )
563+ self .assertLess (duration , self .THRESHOLD_SLOW , "SimilarMorphologyToPartOfexp exceeded threshold" )
564564
565565 # SimilarMorphologyToNB - NeuronBridge matches
566566 result , duration , success = self ._time_query (
@@ -574,7 +574,7 @@ def test_12_nblast_queries(self):
574574 if success and result :
575575 count = result .get ('count' , 0 )
576576 print (f" └─ Found { count } NeuronBridge matches" + (", returned 10" if count > 10 else "" ))
577- self .assertLess (duration , self .THRESHOLD_MEDIUM , "SimilarMorphologyToNB exceeded threshold" )
577+ self .assertLess (duration , self .THRESHOLD_SLOW , "SimilarMorphologyToNB exceeded threshold" )
578578
579579 # SimilarMorphologyToNBexp - NeuronBridge for expression patterns
580580 result , duration , success = self ._time_query (
@@ -588,7 +588,7 @@ def test_12_nblast_queries(self):
588588 if success and result :
589589 count = result .get ('count' , 0 )
590590 print (f" └─ Found { count } NeuronBridge expression matches" + (", returned 10" if count > 10 else "" ))
591- self .assertLess (duration , self .THRESHOLD_MEDIUM , "SimilarMorphologyToNBexp exceeded threshold" )
591+ self .assertLess (duration , self .THRESHOLD_SLOW , "SimilarMorphologyToNBexp exceeded threshold" )
592592
593593 print (f"✅ All NBLAST similarity queries completed" )
594594
0 commit comments