Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
auxten committed Mar 20, 2024
1 parent 5d85a36 commit 9d2ed89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_dbapi_persistence.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class TestDBAPIPersistence(unittest.TestCase):
def test_persistence(self):
conn = dbapi.connect(path=test_state_dir)
cur = con.cursor()
cur = conn.cursor()
cur.execute("CREATE DATABASE e ENGINE = Atomic;")
cur.execute("CREATE TABLE e.hi (a String primary key, b Int32) Engine = MergeTree ORDER BY a;")
cur.execute("INSERT INTO e.hi (a, b) VALUES (%s, %s);", ["he", 32])
Expand All @@ -24,4 +24,4 @@ def test_persistence(self):


if __name__ == '__main__':
unittest.main()
unittest.main()

0 comments on commit 9d2ed89

Please sign in to comment.