Skip to content

Commit

Permalink
i
Browse files Browse the repository at this point in the history
  • Loading branch information
tlocke committed Mar 31, 2024
1 parent 6e75f65 commit 97805c4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/native/auth/test_scram-sha-256.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,16 @@ def setup(con):
def test_scram_sha_256(setup, db_kwargs):
db_kwargs["database"] = DB

Connection(**db_kwargs).close()
with Connection(**db_kwargs):
pass


def test_scram_sha_256_ssl_False(setup, db_kwargs):
db_kwargs["database"] = DB
db_kwargs["ssl_context"] = False

Connection(**db_kwargs).close()
with Connection(**db_kwargs):
pass


def test_scram_sha_256_ssl_True(setup, db_kwargs):
Expand Down

0 comments on commit 97805c4

Please sign in to comment.