diff options
Diffstat (limited to 'test/sql/test_deprecations.py')
| -rw-r--r-- | test/sql/test_deprecations.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/sql/test_deprecations.py b/test/sql/test_deprecations.py index 8bdba2793..06fe22fed 100644 --- a/test/sql/test_deprecations.py +++ b/test/sql/test_deprecations.py @@ -1582,9 +1582,8 @@ class ResultProxyTest(fixtures.TablesTest): text("select * from users where user_id=2") ).first() - with testing.expect_deprecated( - r"The Row.keys\(\) method is deprecated and will be " - "removed in a future release." + with testing.expect_deprecated_20( + r"The Row.keys\(\) function/method is considered legacy " ): eq_(r.keys(), ["user_id", "user_name"]) |
