rename parameter to use driver over type

This commit is contained in:
Jonathan Shook
2020-03-24 19:12:06 -05:00
parent 256116a570
commit 3f750d4704
35 changed files with 110 additions and 100 deletions

View File

@@ -26,7 +26,7 @@ public class DiagActivityTypeTest {
public void testDiagActivity() {
DiagActivityType da = new DiagActivityType();
da.getName();
ActivityDef ad = ActivityDef.parseActivityDef("type=diag;");
ActivityDef ad = ActivityDef.parseActivityDef("driver=diag;");
DiagActivity a = da.getActivity(ad);
a.initActivity();
@@ -35,4 +35,4 @@ public class DiagActivityTypeTest {
((SyncAction)action).runCycle(1L);
}
}
}