tmf: Make CtfLocation extend TmfLocation
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / trace / TmfLocationTest.java
index f091cd9fc0b3627282dbb5791bae62a765716a6d..73062946685929fb0e047ed87c8929a8799b0e1a 100644 (file)
@@ -179,9 +179,9 @@ public class TmfLocationTest {
         TmfLongLocation location2 = new TmfLongLocation(lng);
         TmfTimestampLocation location3 = new TmfTimestampLocation(ts);
 
-        String expected1 = "TmfLocation [fLocation=" + str + "]";
-        String expected2 = "TmfLocation [fLocation=" + lng + "]";
-        String expected3 = "TmfLocation [fLocation=" + ts + "]";
+        String expected1 = "TmfStringLocation [fLocationInfo=" + str + "]";
+        String expected2 = "TmfLongLocation [fLocationInfo=" + lng + "]";
+        String expected3 = "TmfTimestampLocation [fLocationInfo=" + ts + "]";
 
         assertEquals("toString", expected1, location1.toString());
         assertEquals("toString", expected2, location2.toString());
This page took 0.025154 seconds and 5 git commands to generate.