From 42603c01ba82afc5f7c3b3cb37a3b1e89c6e2d44 Mon Sep 17 00:00:00 2001 From: Danesh Kuruppu Date: Fri, 7 Mar 2025 15:21:55 +0530 Subject: [PATCH] Update ballerina/tests/mssql_hospital_with_schema_tests.bal Co-authored-by: DimuthuMadushan <35717653+DimuthuMadushan@users.noreply.github.com> --- ballerina/tests/mssql_hospital_with_schema_tests.bal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ballerina/tests/mssql_hospital_with_schema_tests.bal b/ballerina/tests/mssql_hospital_with_schema_tests.bal index 49e4d43..34cfe55 100644 --- a/ballerina/tests/mssql_hospital_with_schema_tests.bal +++ b/ballerina/tests/mssql_hospital_with_schema_tests.bal @@ -340,7 +340,7 @@ function testDeletePatientMsSqlWithSchema() returns error? { MsSqlHospitalWithSchemaClient mssqlDbHospital = check new(); Patient|persist:Error result = mssqlDbHospital->/patients/[1].delete(); if result is persist:Error { - test:assertFail("Patient should be deleted"); + test:assertFail("Patient should be deleted"); } }