Skip to content
Snippets Groups Projects
Commit c6f731d5 authored by Bernhard Johannes Berger's avatar Bernhard Johannes Berger
Browse files

Fixed broken test case. #54

parent 02920865
No related branches found
No related tags found
No related merge requests found
Pipeline #306768 passed
......@@ -74,7 +74,7 @@ public class ArffPropertiesReader implements PropertiesReader {
}
final PropertySpecification pSpec = specification.find(attr.name());
Requirements.requireInstanceOf(pSpec, DataDescription.class);
Requirements.requireInstanceOf(pSpec.type(), DataDescription.class);
final RepresentationType rType = ((DataDescription)pSpec.type()).getRepresentation();
final TriFunction<Instance, PropertiesSpecification, PropertiesSpecification.Builder, Properties> decoratee = toProperties;
final int index = i;
......
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