Hopefully fix Windows build issue
This commit is contained in:
parent
567fd1219c
commit
103b1ba99f
|
@ -970,7 +970,7 @@ public class FhirResourceDaoTest {
|
|||
{
|
||||
Patient patient = new Patient();
|
||||
patient.addIdentifier("urn:system", "001");
|
||||
patient.addName().addGiven("testSearchStringParamWithNonNormalized_höra");
|
||||
patient.addName().addGiven("testSearchStringParamWithNonNormalized_h\u00F6ra");
|
||||
ourPatientDao.create(patient);
|
||||
}
|
||||
{
|
||||
|
|
|
@ -29,6 +29,12 @@
|
|||
</dependency>
|
||||
|
||||
<!-- Testing -->
|
||||
<dependency>
|
||||
<groupId>ca.uhn.hapi.fhir</groupId>
|
||||
<artifactId>hapi-fhir-structures-dstu</artifactId>
|
||||
<version>0.8-SNAPSHOT</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
package ca.uhn.fhir.parser;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
|
||||
public class MixedResourcesTest {
|
||||
|
||||
@Test
|
||||
public void testMixedResources() {
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue