File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/test/java/net/fortuna/ical4j/vcard Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -56,25 +56,25 @@ public class VCardOutputterTest {
5656
5757 private final VCardOutputter outputter ;
5858
59- private final VCard entity ;
59+ private final VCard card ;
6060
6161 private final String expectedOutput ;
6262
6363 /**
6464 * @param outputter
65- * @param entity
65+ * @param card
6666 * @param expectedOutput
6767 */
68- public VCardOutputterTest (VCardOutputter outputter , VCard entity , String expectedOutput ) {
68+ public VCardOutputterTest (VCardOutputter outputter , VCard card , String expectedOutput ) {
6969 this .outputter = outputter ;
70- this .entity = entity ;
70+ this .card = card ;
7171 this .expectedOutput = expectedOutput ;
7272 }
7373
7474 @ Test
7575 public void testOutput () throws IOException , ValidationException {
7676 var out = new StringWriter ();
77- outputter .output (entity , out );
77+ outputter .output (card , out );
7878 assertEquals (expectedOutput , out .toString ().replaceAll ("\\ r\\ n " , "" ));
7979 }
8080
You can’t perform that action at this time.
0 commit comments