Update for 0.2.0-SNAPSHOT

This commit is contained in:
2022-07-14 10:32:33 -05:00
parent 5f4124d3c1
commit ba213e0667
4 changed files with 258 additions and 19 deletions

View File

@ -40,7 +40,6 @@ import org.apache.commons.io.FileUtils;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
@ -118,7 +117,6 @@ class SampleMetaDataProviderTest
RunProcessResult result = new RunProcessAction().execute(request);
assertNotNull(result);
assertNull(result.getError());
assertTrue(result.getRecords().stream().allMatch(r -> r.getValues().containsKey("id")), "records should have an id, set by the process");
}