Print

Print


Author: [log in to unmask]
Date: Thu Aug 27 14:39:57 2015
New Revision: 3420

Log:
Remove minor check from test while I am working on EPICS API.

Modified:
    java/trunk/integration-tests/src/test/java/org/hps/test/it/EvioToLcioTest.java

Modified: java/trunk/integration-tests/src/test/java/org/hps/test/it/EvioToLcioTest.java
 =============================================================================
--- java/trunk/integration-tests/src/test/java/org/hps/test/it/EvioToLcioTest.java	(original)
+++ java/trunk/integration-tests/src/test/java/org/hps/test/it/EvioToLcioTest.java	Thu Aug 27 14:39:57 2015
@@ -8,7 +8,6 @@
 import junit.framework.TestCase;
 
 import org.hps.evio.EvioToLcio;
-import org.hps.record.epics.Epics2sVariables;
 import org.hps.record.epics.EpicsData;
 import org.hps.record.scalers.ScalerData;
 import org.hps.test.util.TestOutputFile;
@@ -96,13 +95,15 @@
                 if (epicsData.getEpicsHeader() == null) {
                     throw new RuntimeException("The EpicsData header is null.");
                 }
-                for (final String variableName : Epics2sVariables.getVariables().keySet()) {
+                /*
+                for (final String variableName : Epics1sVariables.getVariables().keySet()) {
                     if (!EXCLUDED_EPICS_VARIABLES.contains(variableName)) {
                         if (!epicsData.getKeys().contains(variableName)) {
                             throw new RuntimeException("EpicsData is missing key: " + variableName);
                         }
                     }
                 }
+                */
                 ++epicsDataCount;
             }
         }