File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1984,11 +1984,11 @@ def test_get_parameter_min_max_value():
19841984 min_value , max_value = cufile .get_parameter_min_max_value (param )
19851985
19861986 # Verify that min <= max and both are reasonable values
1987- assert min_value . value >= 0 , f"Invalid min value: { min_value . value } "
1988- assert max_value . value >= min_value . value , f"Max value { max_value . value } < min value { min_value . value } "
1989- assert max_value . value > 0 , f"Invalid max value: { max_value . value } "
1987+ assert min_value >= 0 , f"Invalid min value: { min_value } "
1988+ assert max_value >= min_value , f"Max value { max_value } < min value { min_value } "
1989+ assert max_value > 0 , f"Invalid max value: { max_value } "
19901990
1991- logging .info (f"POLLTHRESHOLD_SIZE_KB: min={ min_value . value } , max={ max_value . value } " )
1991+ logging .info (f"POLLTHRESHOLD_SIZE_KB: min={ min_value } , max={ max_value } " )
19921992
19931993 finally :
19941994 cufile .driver_close ()
You can’t perform that action at this time.
0 commit comments