From b0dd04646553da65d9ae674248fa55a79b54e640 Mon Sep 17 00:00:00 2001 From: Ossi Rajuvaara Date: Mon, 2 Oct 2023 21:36:23 +0300 Subject: [PATCH] fixup! docs: add support for markdown output --- packages/aws/tests/python/test_redshift_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws/tests/python/test_redshift_data.py b/packages/aws/tests/python/test_redshift_data.py index 9a64740ebe..f5217dfa92 100644 --- a/packages/aws/tests/python/test_redshift_data.py +++ b/packages/aws/tests/python/test_redshift_data.py @@ -99,4 +99,4 @@ def test_execute_statement(redshift): tables = aws.execute_redshift_statement(TEST_SQL) print("RETURNED TABLE:") print(tables) - assert tables.get(0)["City"] == "Vancouver" + assert tables[0]["City"] == "Vancouver"