From 433209091a150a579c17dc0666b63b3a2916994f Mon Sep 17 00:00:00 2001 From: poorna2152 Date: Thu, 26 Oct 2023 13:41:59 +0530 Subject: [PATCH] Comment . function usage in profiler test --- .../src/test/resources/profiler/profiler_single_file.bal | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/jballerina-integration-test/src/test/resources/profiler/profiler_single_file.bal b/tests/jballerina-integration-test/src/test/resources/profiler/profiler_single_file.bal index 9eb748a634aa..7bdb44acd04b 100644 --- a/tests/jballerina-integration-test/src/test/resources/profiler/profiler_single_file.bal +++ b/tests/jballerina-integration-test/src/test/resources/profiler/profiler_single_file.bal @@ -17,9 +17,9 @@ import ballerina/test; import ballerina/jballerina.java; -public function '\.\() returns string { - return "this is a user defined function"; -} +// public function '\.\() returns string { +// return "this is a user defined function"; +// } class Person { public string firstName; @@ -60,7 +60,7 @@ public function main() { Person person = new("John", "Doe"); test:assertEquals("John", person.firstName); test:assertEquals("John Doe", person.'\$init\$()); - test:assertEquals("this is a user defined function", '\.\()); + // test:assertEquals("this is a user defined function", '\.\()); record {| string name;