diff options
Diffstat (limited to 'test/ext/test_associationproxy.py')
-rw-r--r-- | test/ext/test_associationproxy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ext/test_associationproxy.py b/test/ext/test_associationproxy.py index 98e40b11e..5e4ebfe63 100644 --- a/test/ext/test_associationproxy.py +++ b/test/ext/test_associationproxy.py @@ -1464,7 +1464,7 @@ class ComparatorTest(fixtures.MappedTest, AssertsCompiledSQL): assert_raises_message( exc.ArgumentError, - "Non-empty has\(\) not allowed", + r"Non-empty has\(\) not allowed", User.singular_value.has, User.singular_value == "singular4" ) @@ -1476,7 +1476,7 @@ class ComparatorTest(fixtures.MappedTest, AssertsCompiledSQL): assert_raises_message( exc.ArgumentError, - "Non-empty has\(\) not allowed", + r"Non-empty has\(\) not allowed", User.singular_value.has, singular_value="singular4" ) |