Skip to content

Commit

Permalink
Fix assertion in test_redshift_schema_tables
Browse files Browse the repository at this point in the history
  • Loading branch information
dlpzx committed Oct 11, 2024
1 parent 6b64613 commit 2a3108e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def test_list_redshift_schema_tables(client1, session_connection_serverless_admi
schema='public',
)
assert_that(len(response)).is_greater_than_or_equal_to(1)
assert_that(response[0]).contains_key('name', 'type', 'alreadyAdded')
assert_that(response[0]).contains_key('name', 'type')


def test_list_redshift_schema_tables_unauthorized(client2, session_connection_serverless_admin):
Expand Down

0 comments on commit 2a3108e

Please sign in to comment.