From 79d14ca66eb6edf7d30d20f1afc6b0d798d0dd7e Mon Sep 17 00:00:00 2001 From: Vivek Singh Date: Thu, 19 Sep 2024 15:13:53 +0530 Subject: [PATCH] #0 - fix for integration tests --- .../model/reportNDashboard/TestStandardReportCardTypeFactory.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/openchs-android/test/model/reportNDashboard/TestStandardReportCardTypeFactory.js b/packages/openchs-android/test/model/reportNDashboard/TestStandardReportCardTypeFactory.js index b49b19e30..b9f212a7c 100644 --- a/packages/openchs-android/test/model/reportNDashboard/TestStandardReportCardTypeFactory.js +++ b/packages/openchs-android/test/model/reportNDashboard/TestStandardReportCardTypeFactory.js @@ -6,6 +6,7 @@ class TestStandardReportCardTypeFactory { const standardReportCardType = new StandardReportCardType(); standardReportCardType.uuid = uuid; standardReportCardType.name = name; + standardReportCardType.type = name; return standardReportCardType; } }