Skip to content

Commit 71869d4

Browse files
committed
fix: remove a spurious 'self' in the fixtures
1 parent b58f9a5 commit 71869d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ext/sqlalchemy_core/test_postgres.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def test_all(session, sanitized_db_url):
5959
assert sql_meta['sanitized_query'].endswith('FROM users')
6060

6161

62-
def test_insert_on_conflict_renders(self, connection):
62+
def test_insert_on_conflict_renders(connection):
6363
statement = pg_insert(User).values(name='John', fullname="John Doe", password='123456')
6464
statement = statement.on_conflict_do_nothing()
6565

0 commit comments

Comments
 (0)