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;