From bc351a2dc423987f05f4bf88db4987be507ee0a1 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 15 Oct 2009 16:09:59 +0000 Subject: - DefaultRunner and subclasses have been removed. The job of this object has been simplified and moved into ExecutionContext. Dialects which support sequences should add a `fire_sequence()` method to their execution context implementation. [ticket:1566] --- test/sql/test_unicode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/sql/test_unicode.py') diff --git a/test/sql/test_unicode.py b/test/sql/test_unicode.py index 6551594f3..0a6ddfd40 100644 --- a/test/sql/test_unicode.py +++ b/test/sql/test_unicode.py @@ -131,7 +131,7 @@ class EscapesDefaultsTest(testing.TestBase): # now execute, run the sequence. it should run in u"Special_col.nextid" or similar as # a unicode object; cx_oracle asserts that this is None or a String (postgresql lets it pass thru). - # ensure that base.DefaultRunner is encoding. + # ensure that executioncontext._exec_default() is encoding. t1.insert().execute(data='foo') finally: t1.drop() -- cgit v1.2.1