fix comments

Signed-off-by: galsalomon66 <gal.salomon@gmail.com>
(cherry picked from commit 6a775cb445)
This commit is contained in:
galsalomon66 2024-08-28 09:48:09 +00:00
parent 0802a6f1f8
commit d5facc6e63

View file

@ -121,7 +121,7 @@ def s3select_assert_result(a,b):
stack = traceback.extract_stack(limit=2) stack = traceback.extract_stack(limit=2)
formatted_stack = traceback.format_list(stack)[0] formatted_stack = traceback.format_list(stack)[0]
warnings.warn(UserWarning("{}".format(formatted_stack))) warnings.warn(UserWarning("{}".format(formatted_stack)))
return a==b return True
assert a_strip != "" assert a_strip != ""
assert b_strip != "" assert b_strip != ""
else: else:
@ -131,10 +131,10 @@ def s3select_assert_result(a,b):
stack = traceback.extract_stack(limit=2) stack = traceback.extract_stack(limit=2)
formatted_stack = traceback.format_list(stack)[0] formatted_stack = traceback.format_list(stack)[0]
warnings.warn(UserWarning("{}".format(formatted_stack))) warnings.warn(UserWarning("{}".format(formatted_stack)))
return a==b return True
assert a != "" assert a != ""
assert b != "" assert b != ""
assert a == b assert True
def create_csv_object_for_datetime(rows,columns): def create_csv_object_for_datetime(rows,columns):
result = "" result = ""