From c0b5a0446bf63bdac664421f49742f1156c1911a Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 11 Feb 2008 00:28:39 +0000 Subject: - updated the naming scheme of the base test classes in test/testlib/testing.py; tests extend from either TestBase or ORMTest, using additional mixins for special assertion methods as needed --- test/sql/unicode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/sql/unicode.py') diff --git a/test/sql/unicode.py b/test/sql/unicode.py index 54d453025..9e3ea257e 100644 --- a/test/sql/unicode.py +++ b/test/sql/unicode.py @@ -7,7 +7,7 @@ from testlib import * from testlib.engines import utf8_engine from sqlalchemy.sql import column -class UnicodeSchemaTest(PersistTest): +class UnicodeSchemaTest(TestBase): @testing.unsupported('maxdb', 'oracle', 'sybase') def setUpAll(self): global unicode_bind, metadata, t1, t2, t3 @@ -112,7 +112,7 @@ class UnicodeSchemaTest(PersistTest): meta.drop_all() metadata.create_all() -class EscapesDefaultsTest(testing.PersistTest): +class EscapesDefaultsTest(testing.TestBase): def test_default_exec(self): metadata = MetaData(testing.db) t1 = Table('t1', metadata, -- cgit v1.2.1