Skip to content
Snippets Groups Projects
Commit d108e931 authored by cramakri's avatar cramakri
Browse files

LMS-1527 Fixed broken test.

SVN: 15866
parent 0060a276
No related merge requests found
......@@ -158,11 +158,13 @@ public class DssComponentTest extends AbstractFileSystemTestCase
final FileInfoDssDTO[] fileInfos = new FileInfoDssDTO[list.size()];
list.toArray(fileInfos);
final RpcServiceInterfaceDTO[] ifaces = new RpcServiceInterfaceDTO[1];
final ArrayList<RpcServiceInterfaceDTO> ifaces = new ArrayList<RpcServiceInterfaceDTO>(1);
final RpcServiceInterfaceDTO iface = new RpcServiceInterfaceDTO();
iface.setInterfaceName("V1");
iface.setInterfaceUrlSuffix("/rpc/v1");
ifaces[0] = iface;
iface.setInterfaceMajorVersion(1);
iface.setInterfaceMinorVersion(0);
ifaces.add(iface);
context.checking(new Expectations()
{
......
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