Skip to content

Commit 341d259

Browse files
committed
Normalize method names
1 parent 49fbdd0 commit 341d259

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/apache/commons/io/output/ThresholdingOutputStreamTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
public class ThresholdingOutputStreamTest {
3434

3535
@Test
36-
public void testSetByteCount_OutputStream() throws Exception {
36+
public void testSetByteCountOutputStream() throws Exception {
3737
final AtomicBoolean reached = new AtomicBoolean();
3838
try (ThresholdingOutputStream tos = new ThresholdingOutputStream(3) {
3939
{
@@ -58,7 +58,7 @@ protected void thresholdReached() throws IOException {
5858
}
5959

6060
@Test
61-
public void testSetByteCount_Stream() throws Exception {
61+
public void testSetByteCountStream() throws Exception {
6262
final AtomicBoolean reached = new AtomicBoolean();
6363
try (ThresholdingOutputStream tos = new ThresholdingOutputStream(3) {
6464
{

0 commit comments

Comments
 (0)