Ron Eldor 111ba0e949 Fix parsing error of test data
Fix parsing error that contains special character.
The previous implementation replaced the `:` char with `\n`,
and split on `\n`. Test data containing strings with `\n`
were split as well. Fixes #2193.
The split function caused strings containing `\:` to add
another escape char, resulting in `\\:`. This caused the
tests with the `\:` in the string data to fail.
The fix doesn't replace with `\n`, but splits all `:` that
are not preceded with `\`. After that, removes the preceding `\` char.
2018-11-27 13:48:13 +02:00
..
2018-08-06 11:42:56 +01:00
2016-01-12 14:48:03 +00:00
2015-04-09 10:53:11 +02:00
2015-08-04 17:46:21 +02:00
2018-11-27 13:48:13 +02:00
2017-05-16 17:53:03 +02:00
2018-09-28 14:31:16 +02:00