Skip to content

Commit

Permalink
Fix test_execute_full_join
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed Oct 18, 2024
1 parent 6d70598 commit 4ef6add
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/orm/test_select.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,13 +401,13 @@ def test_execute_full_join(self):
Column('x', types.Int32, primary_key=True),
engines.Memory()
)
t1.create()
t1.create(self.session.bind)
t2 = Table(
't2', self.metadata(),
Column('x', types.Int32, primary_key=True),
engines.Memory()
)
t2.create()
t2.create(self.session.bind)

self.session.query(t1.c.x, t2.c.x) \
.outerjoin(t2, t1.c.x == t2.c.x, strictness='any') \
Expand Down

0 comments on commit 4ef6add

Please sign in to comment.