Skip to content
Snippets Groups Projects
Commit a83a7bcc authored by pkupczyk's avatar pkupczyk
Browse files

SSDM-1706 : V3 AS API - make it possible to fetch a history of properties of...

SSDM-1706 : V3 AS API - make it possible to fetch a history of properties of an entity - fix a broken test

SVN: 33858
parent 1db7dd40
No related merge requests found
...@@ -75,11 +75,11 @@ public class CreateMaterialTest extends AbstractSampleTest ...@@ -75,11 +75,11 @@ public class CreateMaterialTest extends AbstractSampleTest
MaterialCreation m1 = geneCreation("NEW_GENE_WITH_TAGS"); MaterialCreation m1 = geneCreation("NEW_GENE_WITH_TAGS");
List<MaterialPermId> materialIds = v3api.createMaterials(sessionToken, Arrays.asList(m1));
TagCode test123 = new TagCode("TEST_123"); TagCode test123 = new TagCode("TEST_123");
TagCode testMetaprojects = new TagCode("TEST_METAPROJECTS"); TagCode testMetaprojects = new TagCode("TEST_METAPROJECTS");
m1.setTagIds(Arrays.asList(test123, testMetaprojects)); m1.setTagIds(Arrays.asList(test123, testMetaprojects));
List<MaterialPermId> materialIds = v3api.createMaterials(sessionToken, Arrays.asList(m1));
MaterialFetchOptions fetchOptions = new MaterialFetchOptions(); MaterialFetchOptions fetchOptions = new MaterialFetchOptions();
fetchOptions.withTags(); fetchOptions.withTags();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment