summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2024-06-12 09:22:14 -0500
committerDavid Snopek <dsnopek@gmail.com>2024-06-12 09:22:14 -0500
commit4f7439d4cf166ca875b3b5877d0b5044e7eb7d44 (patch)
treec46708705422f2c576fddb894d03d67f16e4eaa8 /test
parentfe0647202b4644642c5a4bd580bbeaf136254603 (diff)
downloadredot-cpp-4f7439d4cf166ca875b3b5877d0b5044e7eb7d44.tar.gz
Fix tests after upstream change to `Node::to_string()`
Diffstat (limited to 'test')
-rw-r--r--test/project/main.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/project/main.gd b/test/project/main.gd
index 665582f..50df65e 100644
--- a/test/project/main.gd
+++ b/test/project/main.gd
@@ -14,7 +14,7 @@ func _ready():
assert_equal(custom_signal_emitted, ["Button", 42])
# To string.
- assert_equal(example.to_string(),'Example:[ GDExtension::Example <--> Instance ID:%s ]' % example.get_instance_id())
+ assert_equal(example.to_string(),'[ GDExtension::Example <--> Instance ID:%s ]' % example.get_instance_id())
# It appears there's a bug with instance ids :-(
#assert_equal($Example/ExampleMin.to_string(), 'ExampleMin:[Wrapped:%s]' % $Example/ExampleMin.get_instance_id())