From 288ee989cd00ce1e5fb58893688b1c3a43f26a88 Mon Sep 17 00:00:00 2001 From: cnathe Date: Fri, 6 Feb 2026 14:11:14 -0600 Subject: [PATCH] SampleTypeCrud.ispec.ts test fix for minor change to error message quotes --- .../src/client/test/integration/SampleTypeCrud.ispec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/experiment/src/client/test/integration/SampleTypeCrud.ispec.ts b/experiment/src/client/test/integration/SampleTypeCrud.ispec.ts index bb71be1260a..30f3f9d2e82 100644 --- a/experiment/src/client/test/integration/SampleTypeCrud.ispec.ts +++ b/experiment/src/client/test/integration/SampleTypeCrud.ispec.ts @@ -1061,8 +1061,8 @@ describe('Aliquot crud', () => { describe('Amount/Unit CRUD', () => { it ("Test Amounts/Units validation on insert/import/update/merge", async () => { const dataType = SAMPLE_ALIQUOT_IMPORT_NO_NAME_PATTERN_NAME; - const NO_UNIT_ERROR = 'A Units value must be provided when Amounts are provided.'; - const NO_AMOUNT_ERROR = 'An Amount value must be provided when Units are provided.'; + const NO_UNIT_ERROR = 'A \'Units\' value must be provided when \'Amounts\' are provided.'; + const NO_AMOUNT_ERROR = 'An \'Amount\' value must be provided when \'Units\' are provided.'; const INCOMPATIBLE_ERROR = 'Units value (L) is not compatible with the ' + dataType + ' display units (g).'; const NEGATIVE_ERROR = "Value '-1.1' for field 'Amount' is invalid. Amounts must be non-negative.";