Skip to content

Commit

Permalink
Fix test names
Browse files Browse the repository at this point in the history
  • Loading branch information
aherbert committed Aug 27, 2020
1 parent 5365879 commit e42dfe1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/test/java/org/apache/commons/codec/binary/Base32Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,21 +139,21 @@ public class Base32Test {
};

@Test
public void testBase64AtBufferStart() {
testBase64InBuffer(0, 100);
public void testBase32AtBufferStart() {
testBase32InBuffer(0, 100);
}

@Test
public void testBase64AtBufferEnd() {
testBase64InBuffer(100, 0);
public void testBase32AtBufferEnd() {
testBase32InBuffer(100, 0);
}

@Test
public void testBase64AtBufferMiddle() {
testBase64InBuffer(100, 100);
public void testBase32AtBufferMiddle() {
testBase32InBuffer(100, 100);
}

private void testBase64InBuffer(final int startPasSize, final int endPadSize) {
private void testBase32InBuffer(final int startPasSize, final int endPadSize) {
final Base32 codec = new Base32();
for (final String[] element : BASE32_TEST_CASES) {
final byte[] bytes = element[0].getBytes(CHARSET_UTF8);
Expand Down

0 comments on commit e42dfe1

Please sign in to comment.