From 8fc4deda094e94d05d1d23ab3cdbed27d0c5caad Mon Sep 17 00:00:00 2001 From: dilanSachi Date: Tue, 13 Jun 2023 16:47:46 +0530 Subject: [PATCH] Fix line length --- .../services/dispatching/UriTemplateDispatcherTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/http/src/test/java/org/ballerinalang/stdlib/services/dispatching/UriTemplateDispatcherTest.java b/stdlib/http/src/test/java/org/ballerinalang/stdlib/services/dispatching/UriTemplateDispatcherTest.java index 5aecb851b8ca..2114a53665ed 100644 --- a/stdlib/http/src/test/java/org/ballerinalang/stdlib/services/dispatching/UriTemplateDispatcherTest.java +++ b/stdlib/http/src/test/java/org/ballerinalang/stdlib/services/dispatching/UriTemplateDispatcherTest.java @@ -201,8 +201,8 @@ public void testUrlTemplateWithNestedJsonQueryParamWithoutURIEncode() { //Expected Json message : {"Products":{"p1":"name1","p2":"name2"}} BValue bJson = JsonParser.parse(new HttpMessageDataStreamer(response).getInputStream()); Assert.assertEquals(((BMap) bJson).get("Products").stringValue(), - "{\"products\":[{\"productOneOf\":{\"productId\":\"0123456789\",\"productCategory\":\"LargeProduct\"}}]}", - "ProductID variable not set properly."); + "{\"products\":[{\"productOneOf\":{\"productId\":\"0123456789\",\"productCategory\":\"LargeProduct\"}}]}", + "ProductID variable not set properly."); } @DataProvider(name = "validUrl")