summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-09-22 20:35:40 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-09-22 20:35:40 -0400
commit08a6a8b51916ab1d084a0070bbb07001cabb1c38 (patch)
tree3c5db3bfafcc18b33d510d246e69db41cb4eb0e0 /test/sql
parentc3c4b2d23dacc9e7e3b772c8384fa129db7d20d5 (diff)
downloadsqlalchemy-08a6a8b51916ab1d084a0070bbb07001cabb1c38.tar.gz
- Removed some now unneeded version checks [ticket:2829] courtesy alex gaynor
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_compiler.py4
-rw-r--r--test/sql/test_operators.py1
2 files changed, 0 insertions, 5 deletions
diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py
index a3ec3af84..cd8ac2aef 100644
--- a/test/sql/test_compiler.py
+++ b/test/sql/test_compiler.py
@@ -2785,10 +2785,6 @@ class DDLTest(fixtures.TestBase, AssertsCompiledSQL):
schema.CreateTable(t1).compile
)
- # there's some unicode issue in the assertion
- # regular expression that appears to be resolved
- # in 2.6, not exactly sure what it is
- @testing.requires.python26
def test_reraise_of_column_spec_issue_unicode(self):
MyType = self._illegal_type_fixture()
t1 = Table('t', MetaData(),
diff --git a/test/sql/test_operators.py b/test/sql/test_operators.py
index ce91c5b5e..97ce3d3dd 100644
--- a/test/sql/test_operators.py
+++ b/test/sql/test_operators.py
@@ -352,7 +352,6 @@ class ExtensionOperatorTest(fixtures.TestBase, testing.AssertsCompiledSQL):
"x -> :x_1"
)
- @testing.requires.python26
def test_op_not_an_iterator(self):
# see [ticket:2726]
class MyType(UserDefinedType):