diff options
author | Jason Kirtland <jek@discorporate.us> | 2007-05-02 01:00:03 +0000 |
---|---|---|
committer | Jason Kirtland <jek@discorporate.us> | 2007-05-02 01:00:03 +0000 |
commit | 0d0094fe3842bd1996f50f4b51d0b6ab856556e3 (patch) | |
tree | 319c32fbb44330a922829fe4a7381e09e3580d0d /test/dialect/mysql.py | |
parent | d03b5327b778434884b1884c28173e24f08ade61 (diff) | |
download | sqlalchemy-0d0094fe3842bd1996f50f4b51d0b6ab856556e3.tar.gz |
- Expanded on the MySQL ENUM 'strict' documentation a little bit.
- Oops, clean up after enum unitttest.
Diffstat (limited to 'test/dialect/mysql.py')
-rw-r--r-- | test/dialect/mysql.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dialect/mysql.py b/test/dialect/mysql.py index 63df5dd13..c74de74ee 100644 --- a/test/dialect/mysql.py +++ b/test/dialect/mysql.py @@ -263,6 +263,7 @@ class TypesTest(AssertMixin): ('a', 'a', 'a', 'a'), ('b', 'b', 'b', 'b'), ('', '', 'a', 'a')]) + enum_table.drop() if __name__ == "__main__": testbase.main() |