< prev index next >

tests/system/src/test/java/test/robot/com/sun/glass/ui/monocle/input/devices/EGalaxMultiTouchDeviceBase.java

Print this page
rev 9504 : need to fix test log and others

@@ -24,11 +24,11 @@
  */
 
 package test.robot.com.sun.glass.ui.monocle.input.devices;
 
 import test.robot.com.sun.glass.ui.monocle.TestApplication;
-import com.sun.glass.ui.monocle.TestLog;
+import com.sun.glass.ui.monocle.TestLogShim;
 import test.robot.com.sun.glass.ui.monocle.UInput;
 import org.junit.Assume;
 
 import java.util.HashSet;
 import java.util.Set;

@@ -192,11 +192,11 @@
         super.sync();
     }
 
     @Override
     public void resendStateAndSync() {
-        TestLog.log("TestTouchDevice: sync");
+        TestLogShim.log("TestTouchDevice: sync");
         for (int p = 0; p < points.length; p++) {
             if (points[p]) {
                 ui.processLine("EV_ABS ABS_MT_TRACKING_ID " + p);
                 ui.processLine("EV_ABS ABS_MT_TOUCH_MAJOR 1");
                 ui.processLine("EV_ABS ABS_MT_POSITION_X " + transformedXs[p]);
< prev index next >