Skip to content

Commit 650c7e4

Browse files
committed
- these tests now fail on a normalize name DB, as they should! because we're quoting the lowercase name.
1 parent 87b9f48 commit 650c7e4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/sql/test_metadata.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1057,6 +1057,9 @@ def test_keep_existing_coltype_no_orig(self):
10571057
autoload=True, keep_existing=True)
10581058
assert isinstance(users.c.name.type, Unicode)
10591059

1060+
@testing.skip_if(
1061+
lambda: testing.db.dialect.requires_name_normalize,
1062+
"test depends on lowercase as case insensitive")
10601063
def test_keep_existing_quote_no_orig(self):
10611064
meta2 = self._notexisting_fixture()
10621065
users = Table('users', meta2, quote=True,
@@ -1120,6 +1123,9 @@ def test_extend_existing_coltype_no_orig(self):
11201123
autoload=True, extend_existing=True)
11211124
assert isinstance(users.c.name.type, Unicode)
11221125

1126+
@testing.skip_if(
1127+
lambda: testing.db.dialect.requires_name_normalize,
1128+
"test depends on lowercase as case insensitive")
11231129
def test_extend_existing_quote_no_orig(self):
11241130
meta2 = self._notexisting_fixture()
11251131
users = Table('users', meta2, quote=True,

0 commit comments

Comments
 (0)