Skip to content

Commit 9428f0c

Browse files
committed
Support multiple entities in a card
1 parent b65f59d commit 9428f0c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/test/java/net/fortuna/ical4j/vcard/VCardOutputterTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)