summaryrefslogtreecommitdiff
path: root/main/tests/test_gdscript.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-03-16 10:38:09 -0700
committerGitHub <noreply@github.com>2019-03-16 10:38:09 -0700
commitda8c2deefad85f7e98e40c3615cc2d18a42d03ad (patch)
treebdefc18006a0490c7bea46da00feb24daf9e5fae /main/tests/test_gdscript.cpp
parent019908e5f02ca2670dd5f956a816cef045f0a777 (diff)
parentb64f9f03f825bd3267c71ee8392d4e8e801010d4 (diff)
Merge pull request #27055 from bojidar-bg/26789-breakpoint-pos
Fix duplicated newlines in GDScript bytecode
Diffstat (limited to 'main/tests/test_gdscript.cpp')
-rw-r--r--main/tests/test_gdscript.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/tests/test_gdscript.cpp b/main/tests/test_gdscript.cpp
index 55e31a18c3..27180f84aa 100644
--- a/main/tests/test_gdscript.cpp
+++ b/main/tests/test_gdscript.cpp
@@ -563,7 +563,7 @@ static void _disassemble_class(const Ref<GDScript> &p_class, const Vector<String
case GDScriptFunction::OPCODE_OPERATOR: {
int op = code[ip + 1];
- txt += "op ";
+ txt += " op ";
String opname = Variant::get_operator_name(Variant::Operator(op));