DMN Input Entry String with Space doesn't work on reimport

Hi,
We are working on decision table where input entry text is supposed to be some text value with space in it , it works fine when we edit and deploy in modeler.
However it doesn’t work on re import the dmn .

Here is the snippet

 <definitions xmlns="http://www.omg.org/spec/DMN/20151101" id="definition_cdd847f3-35ce-11ea-aa09-0200003242ea" name="testDecision" namespace="http://www.flowable.org/dmn">
  <decision id="testDecision" name="testDecision">
    <description>testDecision</description>
    <decisionTable id="decisionTable_cdd847f3-35ce-11ea-aa09-0200003242ea" hitPolicy="FIRST">
      <input label="test">
        <inputExpression id="inputExpression_1" typeRef="string">
          <text>test</text>
        </inputExpression>
      </input>
      <output id="outputExpression_2" label="out" name="out" typeRef="string"></output>
      <rule>
        <inputEntry id="inputEntry_1_1">
          <text><![CDATA["Hello World"]]></text>
        </inputEntry>
        <outputEntry id="outputEntry_2_1">
          <text><![CDATA["Test OutPut"]]></text>
        </outputEntry>
      </rule>
    </decisionTable>
  </decision>
</definitions>

Thanks in advance