]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Resolved merge conflict.
authorMichael Trier <mtrier@gmail.com>
Fri, 30 Jan 2009 04:35:43 +0000 (04:35 +0000)
committerMichael Trier <mtrier@gmail.com>
Fri, 30 Jan 2009 04:35:43 +0000 (04:35 +0000)
test/ext/compiler.py

index 7116725036921fdc225ed59ff021aa65f6949607..db8930be720a7ec64a0826776f633844956af43d 100644 (file)
@@ -117,25 +117,16 @@ class UserDefinedTest(TestBase, AssertsCompiledSQL):
         self.assert_compile(DropThingy(),
             "DROP THINGY"
         )
-        
+
         from sqlalchemy.dialects.postgres import base
         self.assert_compile(AddThingy(),
-<<<<<<< HEAD:test/ext/compiler.py
             "ADD SPECIAL PG THINGY",
             dialect=base.dialect()
-=======
-            "ADD SPECIAL SL THINGY",
-            dialect=create_engine('sqlite://', _initialize=False).dialect
->>>>>>> Couple more corrections to get mssql tests to pass.:test/ext/compiler.py
         )
 
         self.assert_compile(DropThingy(),
             "DROP THINGY",
-<<<<<<< HEAD:test/ext/compiler.py
             dialect=base.dialect()
-=======
-            dialect=create_engine('sqlite://', _initialize=False).dialect
->>>>>>> Couple more corrections to get mssql tests to pass.:test/ext/compiler.py
         )