Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for cannotGzipTwice (0.08 seconds)

  1. okhttp/src/jvmTest/kotlin/okhttp3/RequestTest.kt

            .addHeader("Content-Encoding", "deflate")
            .gzip()
            .build()
        }.also {
          assertThat(it).hasMessage("Content-Encoding already set: deflate")
        }
      }
    
      @Test
      fun cannotGzipTwice() {
        assertFailsWith<IllegalStateException> {
          Request
            .Builder()
            .url("https://square.com/")
            .post("This is the original message".toRequestBody())
            .gzip()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 24.6K bytes
    - Click Count (0)
Back to Top