summaryrefslogtreecommitdiff
path: root/test/perf
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-10-25 12:07:38 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-10-25 12:07:38 -0400
commit7c6bde1c15c97cae34ef9449aa595168910fe87d (patch)
treea8f68e9107ded8b907f136bfd03f679aa0b93678 /test/perf
parentdfb94ca7512136e277ff6e2c969154f3467f592d (diff)
downloadsqlalchemy-7c6bde1c15c97cae34ef9449aa595168910fe87d.tar.gz
The long-deprecated and non-functional ``assert_unicode`` flag on
:func:`.create_engine` as well as :class:`.String` is removed.
Diffstat (limited to 'test/perf')
-rw-r--r--test/perf/stress_all.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/perf/stress_all.py b/test/perf/stress_all.py
index b5d210eef..d17028530 100644
--- a/test/perf/stress_all.py
+++ b/test/perf/stress_all.py
@@ -129,7 +129,7 @@ typedecoratortest = (MyIntType, genmyintvalue,
# Unicode
def genunicodevalue(rnum, fnum):
return (rnum % 4) and (u"value%d" % fnum) or None
-unicodetest = (Unicode(20, assert_unicode=False), genunicodevalue,
+unicodetest = (Unicode(20, ), genunicodevalue,
dict(num_records=100000))
# dict(engineurl='mysql:///test', freshdata=False))
@@ -159,7 +159,7 @@ if test_methods:
for engineurl in ('postgresql://scott:tiger@localhost/test',
'sqlite://', 'mysql://scott:tiger@localhost/test'):
print "\n%s\n" % engineurl
- test_table = prepare(Unicode(20, assert_unicode=False),
+ test_table = prepare(Unicode(20,),
genunicodevalue,
num_fields=10, num_records=100000,
verbose=verbose, engineurl=engineurl)