Print class before method (#34)

This commit is contained in:
Rafał Mikrut 2021-03-29 19:38:53 +02:00 committed by GitHub
parent 0c0ce3e112
commit 9b0947fc80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ func tests_all_functions() -> void:
continue
if debug_print:
print(method_data["name"])
print(name_of_class + "." + method_data["name"])
var arguments: Array = return_for_all(method_data)
object.callv(method_data["name"], arguments)