Skip to content

Commit

Permalink
Normalize method names
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Feb 1, 2025
1 parent 49fbdd0 commit 341d259
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
public class ThresholdingOutputStreamTest {

@Test
public void testSetByteCount_OutputStream() throws Exception {
public void testSetByteCountOutputStream() throws Exception {
final AtomicBoolean reached = new AtomicBoolean();
try (ThresholdingOutputStream tos = new ThresholdingOutputStream(3) {
{
Expand All @@ -58,7 +58,7 @@ protected void thresholdReached() throws IOException {
}

@Test
public void testSetByteCount_Stream() throws Exception {
public void testSetByteCountStream() throws Exception {
final AtomicBoolean reached = new AtomicBoolean();
try (ThresholdingOutputStream tos = new ThresholdingOutputStream(3) {
{
Expand Down

0 comments on commit 341d259

Please sign in to comment.