Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael P. Masterson2013-08-02 23:39:04 +0000
committermegumi.telles2013-08-15 19:02:08 +0000
commit5f92b7208a3c97a23ed23817994556dfe04da91e (patch)
tree7205fd0ff237f03c1afd3183eb41999753d2ebae /plugins/org.eclipse.osee.ote.core
parent8cc26120ff7a2863c2cdd4a4f6de6025e8f1887b (diff)
downloadorg.eclipse.osee-5f92b7208a3c97a23ed23817994556dfe04da91e.tar.gz
org.eclipse.osee-5f92b7208a3c97a23ed23817994556dfe04da91e.tar.xz
org.eclipse.osee-5f92b7208a3c97a23ed23817994556dfe04da91e.zip
bug[ats_F6Q1R]: Argument being ignored in check list function.
One of the checkList functions was ignoring the boolean indicating whether the value should/shouldn't be in the list.
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/elements/DiscreteElement.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/elements/DiscreteElement.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/elements/DiscreteElement.java
index c3fd9084264..664cccdc904 100644
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/elements/DiscreteElement.java
+++ b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/elements/DiscreteElement.java
@@ -1199,7 +1199,7 @@ public abstract class DiscreteElement<T extends Comparable<T>> extends Element i
final T actualValue = getValue();
// Check if the value is in the list
- CheckGroup passFail = inList(accessor, true, actualValue, list, 0);
+ CheckGroup passFail = inList(accessor, wantInList, actualValue, list, 0);
if (checkGroup == null) {
accessor.getLogger().testpoint(accessor, accessor.getTestScript(), accessor.getTestCase(), passFail);

Back to the top