Skip to content
Snippets Groups Projects
Commit 9709e4a3 authored by izabel's avatar izabel
Browse files

[LMS-1609] fix test

SVN: 17000
parent d20be5f5
No related branches found
No related tags found
No related merge requests found
...@@ -85,9 +85,13 @@ public class FeatureStorageProcessorTest extends AbstractFileSystemTestCase ...@@ -85,9 +85,13 @@ public class FeatureStorageProcessorTest extends AbstractFileSystemTestCase
{ {
one(dao).tryGetExperimentIdByPermId(EXPERIMENT_PERM_ID); one(dao).tryGetExperimentIdByPermId(EXPERIMENT_PERM_ID);
will(returnValue((long) 1)); will(returnValue((long) 1));
one(dao).tryGetContainerIdPermId(CONTAINER_PERM_ID); one(dao).tryGetContainerIdPermId(CONTAINER_PERM_ID);
will(returnValue((long) 1)); will(returnValue((long) 1));
one(dao).updateContainer(1, 0, 0);
one(dao).commit();
ImgDatasetDTO dataSetDTO = new ImgDatasetDTO(DATA_SET_PERM_ID, 3, 2, 1); ImgDatasetDTO dataSetDTO = new ImgDatasetDTO(DATA_SET_PERM_ID, 3, 2, 1);
dataSetDTO.setId(1); dataSetDTO.setId(1);
one(dao).tryGetDatasetByPermId(DATA_SET_PERM_ID); one(dao).tryGetDatasetByPermId(DATA_SET_PERM_ID);
......
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