Merge branch 'master' into lttng-luna
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / ctfadaptor / CtfTmfEventTypeTest.java
index 371f36c65cb4da47e02a54a835454d3b2c175a16..7c601b446053e5e134a04b06b2c83eac45a3b858 100644 (file)
@@ -28,7 +28,6 @@ import org.junit.Test;
  * @author ematkho
  * @version 1.0
  */
-@SuppressWarnings("nls")
 public class CtfTmfEventTypeTest {
 
     /**
@@ -37,7 +36,7 @@ public class CtfTmfEventTypeTest {
     @Test
     public void testCtfTmfEventType() {
         String eventName = "";
-        ITmfEventField content = new TmfEventField("", new ITmfEventField[] {});
+        ITmfEventField content = new TmfEventField("", null, new ITmfEventField[] {});
         CtfTmfEventType result = new CtfTmfEventType( eventName, content);
 
         assertNotNull(result);
@@ -51,7 +50,7 @@ public class CtfTmfEventTypeTest {
      */
     @Test
     public void testToString() {
-        ITmfEventField emptyField = new TmfEventField("", new ITmfEventField[] {});
+        ITmfEventField emptyField = new TmfEventField("", null, new ITmfEventField[] {});
         CtfTmfEventType fixture = new CtfTmfEventType("", emptyField);
 
         String result = fixture.toString();
This page took 0.025029 seconds and 5 git commands to generate.