summaryrefslogtreecommitdiff
path: root/test/aaa_profiling/test_compiler.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-11-28 13:07:00 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2010-11-28 13:07:00 -0500
commit5c0d645353518ec632a1ece84d989890d2324eec (patch)
tree07596e4502de5ff612637fa04d74e439a2898f19 /test/aaa_profiling/test_compiler.py
parente836366c843cd64a0df569582534868e3fb00f3b (diff)
downloadsqlalchemy-5c0d645353518ec632a1ece84d989890d2324eec.tar.gz
- the "type_map" dictionary in sqlalchemy.types is now private,
i.e. is named "_type_map". [ticket:1870]
Diffstat (limited to 'test/aaa_profiling/test_compiler.py')
-rw-r--r--test/aaa_profiling/test_compiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/aaa_profiling/test_compiler.py b/test/aaa_profiling/test_compiler.py
index bc589c0b2..160385e95 100644
--- a/test/aaa_profiling/test_compiler.py
+++ b/test/aaa_profiling/test_compiler.py
@@ -27,7 +27,7 @@ class CompileTest(TestBase, AssertsExecutionResults):
for c in t.c:
c.type._type_affinity
from sqlalchemy import types
- for t in types.type_map.values():
+ for t in types._type_map.values():
t._type_affinity
@profiling.function_call_count(69, {'2.4': 44,