1
0
Fork 0

rem var due to github recommendation

This commit is contained in:
ERYoung11 2024-02-04 21:01:14 -06:00
parent 4f9c130339
commit 487c0f849d
1 changed files with 2 additions and 1 deletions

View File

@ -709,7 +709,8 @@ def test_function_notice_order(executor):
LANGUAGE plpgsql;
""",
)
result = executor.function_definition("demo_order")
executor.function_definition("demo_order")
result = run(executor, "select demo_order()")
assert "first\nsecond\nthird\nfourth\nfifth\nsixth" in result[0]