diff --git a/source/doap/client/client.d b/source/doap/client/client.d index 8e8bb4c..7d4d0c3 100644 --- a/source/doap/client/client.d +++ b/source/doap/client/client.d @@ -260,7 +260,8 @@ unittest CoapClient client = new CoapClient("coap.me", 5683); - CoapRequestFuture future = client.newRequestBuilder().payload(cast(ubyte[])"Hello this is Tristan!") + CoapRequestFuture future = client.newRequestBuilder() + .payload(cast(ubyte[])"Hello this is Tristan!") .token([69]) .post();