From affdf8b66194cf0c765bd70e66c6789b490b2e31 Mon Sep 17 00:00:00 2001 From: Marcin Raba Date: Wed, 31 Jan 2024 09:31:40 +0100 Subject: [PATCH] SNOW-1019480-sql-filter-nonsql-statements: fix expected response value --- tests_integration/test_sql.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests_integration/test_sql.py b/tests_integration/test_sql.py index f3cb0403a7..09d8b98be4 100644 --- a/tests_integration/test_sql.py +++ b/tests_integration/test_sql.py @@ -108,5 +108,7 @@ def test_trailing_comments_queries(runner, snowflake_session, test_root_path): result = runner.invoke_with_connection_json(["sql", "-q", trailin_comment_query]) assert result.exit_code == 0 assert result.json == [ - {"1": 1}, + [ + {"1": 1}, + ], ]