Skip to content

Commit 859aeb5

Browse files
committed
KAB-46 fix dict
1 parent 2a4e1dc commit 859aeb5

1 file changed

Lines changed: 10 additions & 7 deletions

File tree

tests/functional/test_tables.py

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -347,13 +347,16 @@ def test_table_with_metadata(self):
347347
'key': 'test_table_with_metadata',
348348
'value': 'success'
349349
}],
350-
columns_metadata={
351-
[{
352-
'key': 'test_column_with_metadata',
353-
'value': 'success',
354-
'columnName': 'col1'
355-
}]
356-
})
350+
columns_metadata=[
351+
[
352+
{
353+
'key': 'test_column_with_metadata',
354+
'value': 'success',
355+
'columnName': 'col1'
356+
}
357+
]
358+
]
359+
)
357360

358361
table_info = self.tables.detail(table_id)
359362
with self.subTest("Test metadata key in response"):

0 commit comments

Comments
 (0)