summaryrefslogtreecommitdiff
path: root/test/sql/test_selectable.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-05-26 17:18:04 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-05-26 17:18:04 -0400
commite2b8c893ca98bb0141405a7d7d40c4024d5bdf41 (patch)
tree1579f2a0932ab73b75227e4ffd06c4390148448a /test/sql/test_selectable.py
parentbfc948e44b15930e566d4afd4340570099af309b (diff)
downloadsqlalchemy-e2b8c893ca98bb0141405a7d7d40c4024d5bdf41.tar.gz
fix this test
Diffstat (limited to 'test/sql/test_selectable.py')
-rw-r--r--test/sql/test_selectable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_selectable.py b/test/sql/test_selectable.py
index e881298a7..183b72111 100644
--- a/test/sql/test_selectable.py
+++ b/test/sql/test_selectable.py
@@ -1592,7 +1592,7 @@ class WithLabelsTest(fixtures.TestBase):
def _assert_labels_warning(self, s):
assert_raises_message(
exc.SAWarning,
- "replaced by another column with the same key",
+ r"replaced by Column.*, which has the same key",
lambda: s.c
)