This file was missing from the patch.

Signed-off-by: James Ren <[email protected]>
Index: autotest/frontend/client/src/autotest/tko/TestSet.java
===================================================================
--- autotest/frontend/client/src/autotest/tko/TestSet.java	(revision 4716)
+++ autotest/frontend/client/src/autotest/tko/TestSet.java	(working copy)
@@ -3,7 +3,7 @@
 import com.google.gwt.json.client.JSONObject;
 import com.google.gwt.json.client.JSONString;
 
-abstract class TestSet {
+public abstract class TestSet {
     /**
      * Get the full condition args for this test set.
      */
@@ -14,10 +14,10 @@
     public abstract String getPartialSqlCondition();
     public abstract boolean isSingleTest();
     public abstract int getTestIndex();
-    
+
     public JSONObject getCondition() {
         JSONObject condition = getInitialCondition();
-        String sqlCondition = TkoUtils.getSqlCondition(condition); 
+        String sqlCondition = TkoUtils.getSqlCondition(condition);
         sqlCondition = TkoUtils.joinWithParens(" AND ", sqlCondition, getPartialSqlCondition());
         condition.put("extra_where", new JSONString(sqlCondition));
         return condition;
_______________________________________________
Autotest mailing list
[email protected]
http://test.kernel.org/cgi-bin/mailman/listinfo/autotest

Reply via email to