Skip to content

Commit

Permalink
[SHIBUI-1058]
Browse files Browse the repository at this point in the history
Updated boolean override to always be true if present.
  • Loading branch information
Bill Smith committed Feb 15, 2019
1 parent 9cc0050 commit 254ca66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ class TestObjectGenerator {
override.getPersistType() != override.getDisplayType()) {
attributes.add(attributeUtility.createAttributeWithStringValues(override.getAttributeName(), override.getAttributeFriendlyName(), generator.randomString(30)))
} else {
attributes.add(attributeUtility.createAttributeWithBooleanValue(override.getAttributeName(), override.getAttributeFriendlyName(), generator.randomBoolean()))
attributes.add(attributeUtility.createAttributeWithBooleanValue(override.getAttributeName(), override.getAttributeFriendlyName(), true))
}
break
case ModelRepresentationConversions.AttributeTypes.INTEGER:
Expand Down

0 comments on commit 254ca66

Please sign in to comment.