From 8e257dddef90aa03ad38a4f6111ffcd0877c4e6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Fejfar?= Date: Wed, 24 Apr 2024 10:18:06 +0200 Subject: [PATCH] KAB-46 fix dict --- tests/functional/test_tables.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/functional/test_tables.py b/tests/functional/test_tables.py index 15f1c1f..1fbb007 100644 --- a/tests/functional/test_tables.py +++ b/tests/functional/test_tables.py @@ -347,13 +347,14 @@ def test_table_with_metadata(self): 'key': 'test_table_with_metadata', 'value': 'success' }], - columns_metadata={ - [{ + columns_metadata=[ + { 'key': 'test_column_with_metadata', 'value': 'success', 'columnName': 'col1' - }] - }) + } + ] + ) table_info = self.tables.detail(table_id) with self.subTest("Test metadata key in response"):