Update to c375cd96d51d4a996c133cb4f73402851cd16939
This commit is contained in:
parent
7d3739eebf
commit
161bf2e7a4
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ func _evaluate_recursive(random: String, parent_dict: Dictionary, path: String =
|
|||
var failed: Array[String] = []
|
||||
for key in parent_dict:
|
||||
# Check if key exists in data
|
||||
if data.get(key, random) == random:
|
||||
if str(data.get(key, random)) == random:
|
||||
# Does not exist, append error
|
||||
failed.append(core.stringify_variables("Key %key% is present in schema but missing in data", { "key": path + "/" + key }))
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue