diff options
author | jmisinco | 2012-11-05 17:22:06 +0000 |
---|---|---|
committer | Roberto E. Escobar | 2012-11-05 17:22:06 +0000 |
commit | 0f58e7454804f7437b66567891e5c3985213f0b3 (patch) | |
tree | 71d0303c2251015f3a1d6fca8d743278704a4239 /plugins/org.eclipse.osee.ote.define/support | |
parent | 8071c12bfff782028aab77a92f0ac273573dd10a (diff) | |
download | org.eclipse.osee-0f58e7454804f7437b66567891e5c3985213f0b3.tar.gz org.eclipse.osee-0f58e7454804f7437b66567891e5c3985213f0b3.tar.xz org.eclipse.osee-0f58e7454804f7437b66567891e5c3985213f0b3.zip |
refactor[ats_T9TNA]: Replace yes/no with true/false for BooleanAttributes
Change-Id: I7ff641d708ec9160b0d75d1040c0d98b159bcfba
Diffstat (limited to 'plugins/org.eclipse.osee.ote.define/support')
-rw-r--r-- | plugins/org.eclipse.osee.ote.define/support/OseeTypes_OTE.osee | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.ote.define/support/OseeTypes_OTE.osee b/plugins/org.eclipse.osee.ote.define/support/OseeTypes_OTE.osee index e715eefede1..6afeb7cd4e6 100644 --- a/plugins/org.eclipse.osee.ote.define/support/OseeTypes_OTE.osee +++ b/plugins/org.eclipse.osee.ote.define/support/OseeTypes_OTE.osee @@ -215,7 +215,7 @@ attributeType "Script Aborted" extends BooleanAttribute { min 1 max 1 taggerId DefaultAttributeTaggerProvider description "Test Abort status" - defaultValue "yes" + defaultValue "true" } attributeType "Test Script GUID" extends StringAttribute { @@ -232,7 +232,7 @@ attributeType "Ran In Batch Mode" extends BooleanAttribute { dataProvider DefaultAttributeDataProvider min 1 max 1 description "Run was performed as part of a batch" - defaultValue "no" + defaultValue "false" } attributeType "Is Batch Mode Allowed" extends BooleanAttribute { @@ -241,7 +241,7 @@ attributeType "Is Batch Mode Allowed" extends BooleanAttribute { dataProvider DefaultAttributeDataProvider min 1 max 1 description "Whether Test Script is allowed to run as part of a batch" - defaultValue "yes" + defaultValue "true" } attributeType "Last Date Uploaded" extends DateAttribute { |