Skip to content
Snippets Groups Projects
Commit b6e966d0 authored by Adam Laskowski's avatar Adam Laskowski
Browse files

SSDM-55: fixed more tests

parent 315570de
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -255,7 +255,7 @@ public class JythonManagedPropertyEvaluatorTest extends AssertJUnit
evaluator.updateFromUI(managedProperty, person, action1);
assertNotNull(managedProperty.getValue());
String[] inputTokens1 = managedProperty.getValue().split("\\|");
String[] inputTokens1 = ((String)managedProperty.getValue()).split("\\|");
assertEquals("a1", inputTokens1[0]);
assertEquals("t1=null", inputTokens1[1]);
assertEquals("t2=v2", inputTokens1[2]);
......@@ -264,7 +264,7 @@ public class JythonManagedPropertyEvaluatorTest extends AssertJUnit
evaluator.updateFromUI(managedProperty, person, action2);
assertNotNull(managedProperty.getValue());
String[] inputTokens2 = managedProperty.getValue().split("\\!");
String[] inputTokens2 = ((String)managedProperty.getValue()).split("\\!");
assertEquals("a2", inputTokens2[0]);
assertEquals("t1=v11", inputTokens2[1]);
assertEquals("t2=v22", inputTokens2[2]);
......
......@@ -15,6 +15,7 @@
*/
package ch.systemsx.cisd.openbis.generic.shared.managed_property.structured;
import java.io.Serializable;
import java.util.Arrays;
import java.util.List;
......@@ -88,7 +89,7 @@ public abstract class AbstractStructuredPropertyConverterTest extends AssertJUni
}
@Override
public void setValue(String value)
public void setValue(Serializable value)
{
throw new UnsupportedOperationException();
}
......
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