Skip to content

Commit

Permalink
KTOR-6480 Disable testErrorInBodyClosesConnectionWithContentLength fo…
Browse files Browse the repository at this point in the history
…r Tomcat (#3839)
  • Loading branch information
rsinukov committed Nov 22, 2023
1 parent f6f7297 commit a2e934d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ abstract class HttpServerCommonTestSuite<TEngine : ApplicationEngine, TConfigura
}

@Test
fun testErrorInBodyClosesConnectionWithContentLength() {
open fun testErrorInBodyClosesConnectionWithContentLength() {
createAndStartServer {
get("/") {
call.respond(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ class TomcatHttpServerCommonTest :
Logger.getLogger(it).apply { level = Level.WARNING }
}
}

@Ignore // KTOR-6480
override fun testErrorInBodyClosesConnectionWithContentLength() {}
}

class TomcatHttpServerJvmTest :
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ class TomcatHttpServerCommonTest :
Logger.getLogger(it).apply { level = Level.WARNING }
}
}

@Ignore // KTOR-6480
override fun testErrorInBodyClosesConnectionWithContentLength() {}
}

class TomcatHttpServerJvmTest :
Expand Down

0 comments on commit a2e934d

Please sign in to comment.