remove the print

This commit is contained in:
Jacky 2017-12-21 08:22:44 -05:00
parent 136eba52df
commit e1a494aabd

View File

@ -128,7 +128,6 @@ public class ParsingUtilitiesTests extends RefineTest {
StrSubstitutor sub = new StrSubstitutor(data); StrSubstitutor sub = new StrSubstitutor(data);
String message = "The value ${value} in row ${row_number} and column ${column_number} is not type ${field_type} and format ${field_format}"; String message = "The value ${value} in row ${row_number} and column ${column_number} is not type ${field_type} and format ${field_format}";
String result = sub.replace(message); String result = sub.replace(message);
System.out.println("XXXXXXXX:" + result);
Assert.assertTrue(result.contains("1234")); Assert.assertTrue(result.contains("1234"));
} }
} }