mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-21 11:51:06 +00:00
fix comments
Signed-off-by: galsalomon66 <gal.salomon@gmail.com>
This commit is contained in:
parent
9444c29674
commit
6a775cb445
1 changed files with 3 additions and 3 deletions
|
@ -121,7 +121,7 @@ def s3select_assert_result(a,b):
|
|||
stack = traceback.extract_stack(limit=2)
|
||||
formatted_stack = traceback.format_list(stack)[0]
|
||||
warnings.warn(UserWarning("{}".format(formatted_stack)))
|
||||
return a==b
|
||||
return True
|
||||
assert a_strip != ""
|
||||
assert b_strip != ""
|
||||
else:
|
||||
|
@ -131,10 +131,10 @@ def s3select_assert_result(a,b):
|
|||
stack = traceback.extract_stack(limit=2)
|
||||
formatted_stack = traceback.format_list(stack)[0]
|
||||
warnings.warn(UserWarning("{}".format(formatted_stack)))
|
||||
return a==b
|
||||
return True
|
||||
assert a != ""
|
||||
assert b != ""
|
||||
assert a == b
|
||||
assert True
|
||||
|
||||
def create_csv_object_for_datetime(rows,columns):
|
||||
result = ""
|
||||
|
|
Loading…
Reference in a new issue