fix unit tests

add new configuration option
This commit is contained in:
marhali 2022-04-22 09:49:45 +02:00
parent bd1375769a
commit d58a6478a9
2 changed files with 10 additions and 0 deletions

View File

@ -157,6 +157,11 @@ public class KeyPathConverterTest {
public boolean isAssistance() {
return false;
}
@Override
public boolean isAlwaysFold() {
return false;
}
});
}
}

View File

@ -230,6 +230,11 @@ public class PropertiesMapperTest extends AbstractMapperTest {
public boolean isAssistance() {
return false;
}
@Override
public boolean isAlwaysFold() {
return false;
}
});
}
}