diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-28 13:07:00 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-28 13:07:00 -0500 |
| commit | 5c0d645353518ec632a1ece84d989890d2324eec (patch) | |
| tree | 07596e4502de5ff612637fa04d74e439a2898f19 /test/aaa_profiling/test_compiler.py | |
| parent | e836366c843cd64a0df569582534868e3fb00f3b (diff) | |
| download | sqlalchemy-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.py | 2 |
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, |
