Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Oct 28, 2020
1 parent d609de1 commit 9e5728c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class JansiSupportImplTest {

@Test
public void testJansiVersion() {
assertEquals(JansiSupportImpl.JANSI_MAJOR_VERSION, 2);
assertEquals(JansiSupportImpl.JANSI_MINOR_VERSION, 0);
assertEquals(2, JansiSupportImpl.JANSI_MAJOR_VERSION);
assertEquals(0, JansiSupportImpl.JANSI_MINOR_VERSION);
}
}

0 comments on commit 9e5728c

Please sign in to comment.