Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for removePathSegmentDoesntRemovePath (0.49 sec)

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

        val url =
          base
            .newBuilder()
            .removePathSegment(0)
            .build()
        assertThat(url.encodedPath).isEqualTo("/b/c")
      }
    
      @Test
      fun removePathSegmentDoesntRemovePath() {
        val base = parse("http://host/a/b/c")
        val url =
          base
            .newBuilder()
            .removePathSegment(0)
            .removePathSegment(0)
            .removePathSegment(0)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
Back to top