summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/gdscript_test_runner.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-10-19 09:57:13 +0200
committerGitHub <noreply@github.com>2021-10-19 09:57:13 +0200
commit4387f9645b1f54755506804770ba15c6c9cd5094 (patch)
treec6ea23953c4cb3742c3f876b267262f5ad651355 /modules/gdscript/tests/gdscript_test_runner.cpp
parent21f1ac8bf313ee7859019fd57133862e2f559ea3 (diff)
parent0587e5e018f832eba8771a1cb1b645364b45f354 (diff)
downloadredot-engine-4387f9645b1f54755506804770ba15c6c9cd5094.tar.gz
Merge pull request #52940 from groud/toast_notification
Diffstat (limited to 'modules/gdscript/tests/gdscript_test_runner.cpp')
-rw-r--r--modules/gdscript/tests/gdscript_test_runner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/tests/gdscript_test_runner.cpp b/modules/gdscript/tests/gdscript_test_runner.cpp
index 50c1f68440..d2e71efee7 100644
--- a/modules/gdscript/tests/gdscript_test_runner.cpp
+++ b/modules/gdscript/tests/gdscript_test_runner.cpp
@@ -334,7 +334,7 @@ void GDScriptTest::print_handler(void *p_this, const String &p_message, bool p_e
result->output += p_message + "\n";
}
-void GDScriptTest::error_handler(void *p_this, const char *p_function, const char *p_file, int p_line, const char *p_error, const char *p_explanation, ErrorHandlerType p_type) {
+void GDScriptTest::error_handler(void *p_this, const char *p_function, const char *p_file, int p_line, const char *p_error, const char *p_explanation, bool p_editor_notify, ErrorHandlerType p_type) {
ErrorHandlerData *data = (ErrorHandlerData *)p_this;
GDScriptTest *self = data->self;
TestResult *result = data->result;