From: Mike Bayer Date: Tue, 6 Dec 2022 21:31:30 +0000 (-0500) Subject: sort materialize view names in test X-Git-Tag: rel_2_0_0rc1~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=939daf368012037637472239508e180abd716e79;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git sort materialize view names in test saw this fail on CI with views in reverse order Change-Id: I953f379f36924673a49b94cf5e7f54d071044113 --- diff --git a/test/dialect/oracle/test_reflection.py b/test/dialect/oracle/test_reflection.py index 60a05a6b69..afe9ad7aa8 100644 --- a/test/dialect/oracle/test_reflection.py +++ b/test/dialect/oracle/test_reflection.py @@ -622,7 +622,7 @@ class ViewReflectionTest(fixtures.TestBase): insp = inspect(connection) eq_(insp.get_table_names(), ["tbl"]) eq_(insp.get_view_names(), ["tbl_plain_v"]) - eq_(insp.get_materialized_view_names(), ["tbl_v", "tbl_v2"]) + eq_(sorted(insp.get_materialized_view_names()), ["tbl_v", "tbl_v2"]) eq_( insp.get_view_names(schema=testing.config.test_schema), ["schema_view"],