We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a4e1dc commit 859aeb5Copy full SHA for 859aeb5
1 file changed
tests/functional/test_tables.py
@@ -347,13 +347,16 @@ def test_table_with_metadata(self):
347
'key': 'test_table_with_metadata',
348
'value': 'success'
349
}],
350
- columns_metadata={
351
- [{
352
- 'key': 'test_column_with_metadata',
353
- 'value': 'success',
354
- 'columnName': 'col1'
355
- }]
356
- })
+ columns_metadata=[
+ [
+ {
+ 'key': 'test_column_with_metadata',
+ 'value': 'success',
+ 'columnName': 'col1'
+ }
357
+ ]
358
359
+ )
360
361
table_info = self.tables.detail(table_id)
362
with self.subTest("Test metadata key in response"):
0 commit comments