sess = fixture_session()
if autoalias:
- # eager join is both from Enginer->LastSeen as well as
+ # eager join is both from Engineer->LastSeen as well as
# Manager->LastSeen. In the case of Manager->LastSeen,
# Manager is internally aliased, and comes to JoinedEagerLoader
# with no "parent" entity but an adapter.
],
)
- def test_mulitple_expressions(self):
+ def test_multiple_expressions(self):
User = self.classes.User
evaluator = compiler.process(User.id > 5, User.name == "ed")
def test_issue_5435_operators_precedence(
self, _modern, _legacy, _in_precedence
):
- # (modern, legacy, in_precendence)
+ # (modern, legacy, in_precedence)
# core operators
assert hasattr(operators, _modern)
assert hasattr(operators, _legacy)
'"SUM(ABC)_"',
)
- def test_order_by_literal_col_quoting_one_explict_quote(self):
+ def test_order_by_literal_col_quoting_one_explicit_quote(self):
col = literal_column("SUM(ABC)").label(quoted_name("SUM(ABC)", True))
tbl = table("my_table")
query = select(col).select_from(tbl).order_by(col)