Skip to content
Snippets Groups Projects
Commit 5359d4a9 authored by buczekp's avatar buczekp
Browse files

[LMS-2276] fixed cina test expectations

SVN: 21548
parent 42994ae9
No related branches found
No related tags found
No related merge requests found
...@@ -237,7 +237,7 @@ class BundleDownloader ...@@ -237,7 +237,7 @@ class BundleDownloader
private void downloadDataSet(DataSet dataSet, String subfolderNameOrNull) private void downloadDataSet(DataSet dataSet, String subfolderNameOrNull)
{ {
IDataSetDss dataSetDss = component.getDataSet(dataSet.getCode()); IDataSetDss dataSetDss = component.getDataSet(dataSet.getCode());
FileInfoDssDTO[] fileInfos = dataSetDss.listFiles("/original/", true); FileInfoDssDTO[] fileInfos = dataSetDss.listFiles("original/", true);
File targetDir = File targetDir =
(subfolderNameOrNull != null) ? new File(outputDir, subfolderNameOrNull) (subfolderNameOrNull != null) ? new File(outputDir, subfolderNameOrNull)
......
...@@ -218,7 +218,7 @@ public class CommandGetBundleTest extends AbstractFileSystemTestCase ...@@ -218,7 +218,7 @@ public class CommandGetBundleTest extends AbstractFileSystemTestCase
context.checking(new Expectations() context.checking(new Expectations()
{ {
{ {
final String startPath = "/original/"; final String startPath = "original/";
IDataSetDss bundleMetadata = context.mock(IDataSetDss.class, "bundle-metadata"); IDataSetDss bundleMetadata = context.mock(IDataSetDss.class, "bundle-metadata");
one(dssComponent).getDataSet("BUNDLE-METADATA"); one(dssComponent).getDataSet("BUNDLE-METADATA");
......
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