]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
oursql seems to handle this? unclear, might be dependent on mysql version
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 8 Aug 2014 18:40:44 +0000 (14:40 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 8 Aug 2014 18:40:44 +0000 (14:40 -0400)
test/dialect/mysql/test_types.py

index 1735202167bcc80e1b30b6892ff2992c615bbaed..a52f36e11319fd219ef9a68c526dc1a05a6bde70 100644 (file)
@@ -655,13 +655,7 @@ class EnumSetTest(fixtures.TestBase, AssertsExecutionResults, AssertsCompiledSQL
 
         res = set_table.select().execute().fetchall()
 
-        if testing.against("+oursql"):
-            expected = [
-                # 1st row with all c's, data truncated
-                (set(['']), set(['']), set(['']), set(['']), None),
-            ]
-        else:
-            expected = []
+        expected = []
 
         expected.extend([
             (set(['a']), set(['a']), set(['a']), set(["'a'"]), set(['a', 'b'])),