Skip to content

Commit

Permalink
Fix test names
Browse files Browse the repository at this point in the history
  • Loading branch information
frankgh authored and vietj committed Feb 20, 2024
1 parent fe35bbd commit b81aa3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/io/vertx/core/http/HttpTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2224,7 +2224,7 @@ public void testSendOffsetIsHigherThanFileLengthForFile() throws Exception {
}

@Test
public void testSendFileFromClasspathWithNegativeLength() throws Exception {
public void testSendFileWithNegativeLength() throws Exception {
File f = setupFile("twenty_three_bytes.txt", TestUtils.randomAlphaString(23));
server.requestHandler(res -> {
try {
Expand Down Expand Up @@ -2252,7 +2252,7 @@ public void testSendFileFromClasspathWithNegativeLength() throws Exception {
}

@Test
public void testSendFileFromClasspathWithNegativeOffset() throws Exception {
public void testSendFileWithNegativeOffset() throws Exception {
File f = setupFile("twenty_three_bytes.txt", TestUtils.randomAlphaString(23));
server.requestHandler(res -> {
try {
Expand Down

0 comments on commit b81aa3e

Please sign in to comment.