From 02914d5758d433f08d91753e2f959a2e135fddee Mon Sep 17 00:00:00 2001 From: William Maio Date: Tue, 24 Aug 2021 12:12:49 -0700 Subject: [PATCH] fix spelling (#6926) --- lib/sqlalchemy/testing/requirements.py | 2 +- test/orm/test_attributes.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py index f660556ebb..742a9a1f81 100644 --- a/lib/sqlalchemy/testing/requirements.py +++ b/lib/sqlalchemy/testing/requirements.py @@ -857,7 +857,7 @@ class SuiteRequirements(Requirements): >>> testing.requirements.get_isolation_levels() { - "default": "READ_COMMITED", + "default": "READ_COMMITTED", "supported": [ "SERIALIZABLE", "READ UNCOMMITTED", "READ COMMITTED", "REPEATABLE READ", diff --git a/test/orm/test_attributes.py b/test/orm/test_attributes.py index 0a0a5d12b7..3cdc9b784c 100644 --- a/test/orm/test_attributes.py +++ b/test/orm/test_attributes.py @@ -1110,7 +1110,7 @@ class UtilTest(fixtures.ORMTest): attributes.del_attribute(f1, "coll") assert "coll" not in f1.__dict__ - def test_set_commited_value_none_uselist(self): + def test_set_committed_value_none_uselist(self): """test that set_committed_value->None to a uselist generates an empty list""" -- 2.47.2