Skip to content

Commit

Permalink
GH-187: fix typo in test sample
Browse files Browse the repository at this point in the history
  • Loading branch information
zubri committed May 9, 2024
1 parent cfb53e6 commit cb01bcf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void test_parse3() {
assertEquals("VNDZBET2AXXX", m.getField102().getValue());

assertNotNull(m.getField253());
assertEquals("050719MVNDZBET2AXXX0181000391", m.getField253().getValue());
assertEquals("050719VNDZBET2AXXX0181000391", m.getField253().getValue());
}

@Test
Expand Down Expand Up @@ -184,7 +184,7 @@ public void test_create3() {
m.setSender("VNDZBET2AXXX");
m.setReceiver("DYDYXXXXFXXX");
m.append(new Field102("VNDZBET2AXXX"));
m.append(new Field253("050719MVNDZBET2AXXX0181000391"));
m.append(new Field253("050719VNDZBET2AXXX0181000391"));

assertEquals(sample3, m.message());
}
Expand Down

0 comments on commit cb01bcf

Please sign in to comment.