Johan Haleby

Results 302 comments of Johan Haleby
trafficstars

Thanks for trying it out @pointwisefixed

I've written a test case for this: ``` java @Test public void doesnt_send_a_content_type_header_when_there_is_no_body() { when(). get("/headersWithValues"). then(). body("containsKey('Content-Type')", is(false)); } ``` where "/headersWithValues" is implemented like this (scala): ``` scala...

@srikar02 Thanks, that's a good example! Sounds reasonable that the content-type shouldn't be supplied for empty bodies (at least not be default).

Oh, I didn't know this. There's a project in the JVM space that has "recipes" (or something similar) for automatically upgrading between different major versions of frameworks/libraries. Maybe they have...

I was thinking of [openrewrite](https://github.com/openrewrite), but I don't can't [see](https://docs.openrewrite.org/recipes) that they have support for Jetty unfortunately.

That's really cool! I actually made a very simple version of awaitility myself in Clojure back in the day :) Would it be possible to even merge this into the...

Thanks for the PR, however I'm a bit reluctant to do this because it'll make the API surface larger, and getting the poll interval etc is not something that you...

I'm sorry for the _extremely_ late response. I've been thinking about this back and forth. I don't like adding stuff to the API unless it's required, but maybe it's worth...

I'll bring this in, I think it make sense.