fix test cases

This commit is contained in:
Grahame Grieve 2023-06-21 11:40:39 +10:00
parent 2acd6f9537
commit fea8d5c29a
2 changed files with 2 additions and 2 deletions

View File

@ -384,7 +384,7 @@ class UtilitiesTest {
RuntimeException thrown = Assertions.assertThrows(RuntimeException.class, () -> { RuntimeException thrown = Assertions.assertThrows(RuntimeException.class, () -> {
Utilities.path(pathsStrings); Utilities.path(pathsStrings);
}); });
assertEquals("First entry cannot be null or empty",thrown.getMessage()); assertEquals("First path entry cannot be null or empty",thrown.getMessage());
} }
@Test @Test

View File

@ -20,7 +20,7 @@
<properties> <properties>
<guava_version>32.0.1-jre</guava_version> <guava_version>32.0.1-jre</guava_version>
<hapi_fhir_version>6.4.1</hapi_fhir_version> <hapi_fhir_version>6.4.1</hapi_fhir_version>
<validator_test_case_version>1.3.10</validator_test_case_version> <validator_test_case_version>1.3.11-SNAPSHOT</validator_test_case_version>
<jackson_version>2.14.0</jackson_version> <jackson_version>2.14.0</jackson_version>
<junit_jupiter_version>5.9.2</junit_jupiter_version> <junit_jupiter_version>5.9.2</junit_jupiter_version>
<junit_platform_launcher_version>1.8.2</junit_platform_launcher_version> <junit_platform_launcher_version>1.8.2</junit_platform_launcher_version>