Skip to content

Commit 5fc51a3

Browse files
[fix]: Remove the test that assert list can not be dynamic output
1 parent 179c594 commit 5fc51a3

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

tests/test_attributeDescDefaults.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,6 @@ def test_param_no_value_is_dynamic(attrDesc):
9595
assert attrDesc.isDynamicValue is True
9696

9797

98-
def test_list_and_group_attributes_not_dynamic():
99-
"""ListAttribute and GroupAttribute always have a non-None default value."""
100-
la = desc.ListAttribute(desc.StringParam(name="elem"), name="items")
101-
ga = desc.GroupAttribute([], name="group")
102-
assert la.isDynamicValue is False
103-
assert ga.isDynamicValue is False
104-
105-
10698
def test_label_auto_generated_from_camel_case():
10799
"""Label should be auto-generated from camelCase attribute names."""
108100
assert desc.File(name="outputFile").label == "Output File"

0 commit comments

Comments
 (0)