diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-01-01 06:32:18 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-01-01 06:32:18 +0100 |
commit | 828415d47690790ab58ea279d38f7f1fe63f70ac (patch) | |
tree | 07815a6d146e83c4135f454ac570029c49b4f8b5 /tests/test_sql.py | |
parent | ad2643266fc3868b30cdff4ba70ad606f555d00d (diff) | |
download | psycopg2-828415d47690790ab58ea279d38f7f1fe63f70ac.tar.gz |
Typo: composible -> composable
Diffstat (limited to 'tests/test_sql.py')
-rwxr-xr-x | tests/test_sql.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_sql.py b/tests/test_sql.py index f7c0801..3a90ef3 100755 --- a/tests/test_sql.py +++ b/tests/test_sql.py @@ -117,7 +117,7 @@ class ComposeTests(ConnectingTestCase): class IdentifierTests(ConnectingTestCase): def test_class(self): - self.assert_(issubclass(sql.Identifier, sql.Composible)) + self.assert_(issubclass(sql.Identifier, sql.Composable)) def test_init(self): self.assert_(isinstance(sql.Identifier('foo'), sql.Identifier)) @@ -140,7 +140,7 @@ class IdentifierTests(ConnectingTestCase): class LiteralTests(ConnectingTestCase): def test_class(self): - self.assert_(issubclass(sql.Literal, sql.Composible)) + self.assert_(issubclass(sql.Literal, sql.Composable)) def test_init(self): self.assert_(isinstance(sql.Literal('foo'), sql.Literal)) @@ -164,7 +164,7 @@ class LiteralTests(ConnectingTestCase): class SQLTests(ConnectingTestCase): def test_class(self): - self.assert_(issubclass(sql.SQL, sql.Composible)) + self.assert_(issubclass(sql.SQL, sql.Composable)) def test_init(self): self.assert_(isinstance(sql.SQL('foo'), sql.SQL)) @@ -202,7 +202,7 @@ class SQLTests(ConnectingTestCase): class ComposedTest(ConnectingTestCase): def test_class(self): - self.assert_(issubclass(sql.Composed, sql.Composible)) + self.assert_(issubclass(sql.Composed, sql.Composable)) def test_repr(self): obj = sql.Composed([sql.Literal("foo"), sql.Identifier("b'ar")]) @@ -236,7 +236,7 @@ class ComposedTest(ConnectingTestCase): class PlaceholderTest(ConnectingTestCase): def test_class(self): - self.assert_(issubclass(sql.Placeholder, sql.Composible)) + self.assert_(issubclass(sql.Placeholder, sql.Composable)) def test_alias(self): self.assert_(sql.Placeholder is sql.PH) |