Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/tests/integration/test_orm_sql_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ def test_orm_sql_sync():
assert sql_table is not None

# Check that the ORM and SQL tables have the same columns
orm_column_names = orm_table.columns.keys().sort()
sql_column_names = sql_table.columns.keys().sort()
orm_column_names = sorted(orm_table.columns.keys())
sql_column_names = sorted(sql_table.columns.keys())
assert orm_column_names == sql_column_names

for orm_column in orm_table.columns:
Expand Down
Loading