Fixed catalog-be test failure due to missing imports
Change-Id: I91f281302a33b5b8f640100a3f1b77908ae44e7c
Issue-ID: SDC-2659
Signed-off-by: Satoshi Fujii <fujii-satoshi@jp.fujitsu.com>
Either<List<InputDefinition>, ResponseFormat> result =
testInstance.updateInputsValue(service.getComponentType(), COMPONENT_ID, newInputDefs, USER_ID, true, false);
- assertTrue(result.isLeft());
+ assertThat(result.isLeft()).isTrue();
// check if values are updated
assertEquals(service.getInputs().get(0).getDefaultValue(), NEW_VALUE);
assertEquals(service.getInputs().get(0).isRequired(), Boolean.TRUE);