Skip to content

Commit 0c75e7a

Browse files
delimited type in wlst matches string in alias (#1256)
1 parent 4b3564c commit 0c75e7a

File tree

1 file changed

+4
-1
lines changed
  • integration-tests/alias-test/verify/src/test/python/aliastest/verify

1 file changed

+4
-1
lines changed

integration-tests/alias-test/verify/src/test/python/aliastest/verify/verifier.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1394,7 +1394,10 @@ def _check_for_allowed_unknowns(location, generated_attribute, wlst_type, alias_
13941394
else:
13951395
if get_type in CONVERT_TO_DELIMITED_TYPES or cmo_type in CONVERT_TO_DELIMITED_TYPES:
13961396
message_type = 'delimited'
1397-
message = 'Alias has LSA required'
1397+
1398+
message = 'Alias has LSA required'
1399+
if alias_type == alias_constants.STRING or alias_type == alias_constants.LIST:
1400+
local_valid =True
13981401

13991402
_logger.exiting(class_name=CLASS_NAME, method_name=_method_name, result=Boolean(local_valid))
14001403
return local_valid, message_type, message

0 commit comments

Comments
 (0)