We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 179c594 commit 5fc51a3Copy full SHA for 5fc51a3
1 file changed
tests/test_attributeDescDefaults.py
@@ -95,14 +95,6 @@ def test_param_no_value_is_dynamic(attrDesc):
95
assert attrDesc.isDynamicValue is True
96
97
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
106
def test_label_auto_generated_from_camel_case():
107
"""Label should be auto-generated from camelCase attribute names."""
108
assert desc.File(name="outputFile").label == "Output File"
0 commit comments