Skip to content

Commit

Permalink
Renamed FilterSort -> filter_sort
Browse files Browse the repository at this point in the history
  • Loading branch information
eito-fis committed Jul 2, 2021
1 parent 8e40340 commit 9fe6036
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/tests/records/test_sorting.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


ROSTER = "Roster"
FILTERSORT = "FilterSort"
FILTER_SORT = "filter_sort"


@pytest.fixture
Expand All @@ -22,7 +22,7 @@ def roster_table_obj(engine_with_roster):
def filter_sort_table_obj(engine_with_filter_sort):
engine, schema = engine_with_filter_sort
metadata = MetaData(bind=engine)
roster = Table(FILTERSORT, metadata, schema=schema, autoload_with=engine)
roster = Table(FILTER_SORT, metadata, schema=schema, autoload_with=engine)
return roster, engine


Expand Down

0 comments on commit 9fe6036

Please sign in to comment.