Merge branch 'feature/CHINARPA-4660' into feature/uat-tmp
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -751,7 +751,7 @@ class Comparison: | ... | @@ -751,7 +751,7 @@ class Comparison: |
751 | def input_list_not_zero_compare(self, input_list, ocr_list, **kwargs): | 751 | def input_list_not_zero_compare(self, input_list, ocr_list, **kwargs): |
752 | try: | 752 | try: |
753 | for item in input_list: | 753 | for item in input_list: |
754 | if float(item) <= 0: | 754 | if float(item) == 0: |
755 | return self.RESULT_N | 755 | return self.RESULT_N |
756 | return self.RESULT_Y | 756 | return self.RESULT_Y |
757 | except Exception as e: | 757 | except Exception as e: | ... | ... |
-
Please register or sign in to post a comment