]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix test expected output
authorChristopher Jones <christopher.jones@oracle.com>
Tue, 12 Nov 2024 01:27:41 +0000 (12:27 +1100)
committerChristopher Jones <christopher.jones@oracle.com>
Tue, 12 Nov 2024 01:27:41 +0000 (12:27 +1100)
test/dialect/oracle/test_compiler.py
test/dialect/oracle/test_dialect.py

index 972c60d6e7b49ee344bc4c759b5f71766251bc01..37ae9f53c3c371024d5d469fb1f83fb769bf6f58 100644 (file)
@@ -1417,7 +1417,7 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL):
         )
 
         with testing.expect_warnings(
-            "Computed columns don't work with Oracle UPDATE"
+            "Computed columns don't work with Oracle Database UPDATE"
         ):
             self.assert_compile(
                 t1.update().values(id=1, foo=5).returning(t1.c.bar),
index 684f9d49458e03a12ccd81807339879c3dbdd6bd..882c486c61862093c0b34f58298573e77a8006e7 100644 (file)
@@ -485,7 +485,7 @@ class ComputedReturningTest(fixtures.TablesTest):
             eq_(result.returned_defaults, (52,))
         else:
             with testing.expect_warnings(
-                "Computed columns don't work with Oracle UPDATE"
+                "Computed columns don't work with Oracle Database UPDATE"
             ):
                 result = conn.execute(
                     test.update().values(foo=10).return_defaults()