From 36b9f1b1ac953c81b6eead3bc1d93c3d6aee2ba3 Mon Sep 17 00:00:00 2001 From: Basilio Bogado <541149+basiliskus@users.noreply.github.com> Date: Tue, 29 Oct 2024 08:02:05 -0700 Subject: [PATCH] Removed extra commas that are making json parsing fail (#1513) --- rs-e2e/src/main/resources/assertion_definitions.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rs-e2e/src/main/resources/assertion_definitions.json b/rs-e2e/src/main/resources/assertion_definitions.json index b528250e5..700734794 100644 --- a/rs-e2e/src/main/resources/assertion_definitions.json +++ b/rs-e2e/src/main/resources/assertion_definitions.json @@ -40,7 +40,7 @@ { "name": "CDPH leading zeros", "conditions": [ - "MSH-10 = '004'", + "MSH-10 = '004'" ], "rules": [ "OBX-5 = '5.100'" @@ -49,7 +49,7 @@ { "name": "CDPH no leading zeros", "conditions": [ - "MSH-10 = '005'", + "MSH-10 = '005'" ], "rules": [ "OBX-5 = '0.6500'"