Skip to content

Commit

Permalink
Merge pull request #47 from NickCrews/patch-1
Browse files Browse the repository at this point in the history
fixup assert statements in python tests
  • Loading branch information
samansmink committed Jan 2, 2024
2 parents d47a20a + af9cb4e commit 9db6ec7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/python/quack_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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");
assert res[0][0][0:51] == "Quack Michael, my linked OpenSSL version is OpenSSL"

0 comments on commit 9db6ec7

Please sign in to comment.