From af9cb4e4de96c5dc513fcc33240b60e811e7a281 Mon Sep 17 00:00:00 2001 From: Nick Crews Date: Tue, 28 Nov 2023 16:04:26 -0700 Subject: [PATCH] fixup assert statements in python tests --- test/python/quack_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/python/quack_test.py b/test/python/quack_test.py index e6f9547..e2be276 100644 --- a/test/python/quack_test.py +++ b/test/python/quack_test.py @@ -15,9 +15,9 @@ def duckdb_conn(): def test_quack(duckdb_conn): duckdb_conn.execute("SELECT quack('Sam') as value;"); res = duckdb_conn.fetchall() - assert(res[0][0] == "Quack Sam 🐥"); + assert res[0][0] == "Quack Sam 🐥" def test_quack_openssl_version_test(duckdb_conn): duckdb_conn.execute("SELECT quack_openssl_version('Michael');"); res = duckdb_conn.fetchall() - assert(res[0][0][0:51] == "Quack Michael, my linked OpenSSL version is OpenSSL"); \ No newline at end of file + assert res[0][0][0:51] == "Quack Michael, my linked OpenSSL version is OpenSSL"