Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,13 @@ class ContentUtils {
}, parsingClosure)
}

protected static Object convertDslPropsToTemporaryRegexPatterns(Object parsedJson,
Function parsingFunction) {
MapConverter.transformValues(parsedJson, { Object value ->
return transformJSONStringValue(value, GET_TEST_SIDE)
}, parsingFunction)
}

private static Object convertAllTemporaryRegexPlaceholdersBackToPatterns(parsedJson) {
MapConverter.transformValues(parsedJson, { Object value ->
if (value instanceof String) {
Expand Down
Loading
Loading