From d497494eeb139b54790aedd7754ad325277602e8 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Mon, 18 Sep 2023 15:09:58 +0200 Subject: [PATCH] Client (unit test) - Neatened up --- source/doap/client/client.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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();