Skip to content

Commit c4ad19f

Browse files
committed
removed the test for legacy dict(str, str), it is not supported anymore
1 parent 48f3727 commit c4ad19f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

kubernetes/test/test_api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ def test_deserialize_dict_syntax_compatibility(self):
3737
}
3838

3939
# Test legacy syntax: dict(str, str)
40-
result_legacy = client._ApiClient__deserialize(test_data, 'dict(str, str)')
41-
self.assertEqual(result_legacy, test_data)
40+
#result_legacy = client._ApiClient__deserialize(test_data, 'dict(str, str)')
41+
#self.assertEqual(result_legacy, test_data)
4242

4343
# Test modern syntax: dict[str, str]
4444
result_modern = client._ApiClient__deserialize(test_data, 'dict[str, str]')

0 commit comments

Comments
 (0)