From 4f7439d4cf166ca875b3b5877d0b5044e7eb7d44 Mon Sep 17 00:00:00 2001 From: David Snopek Date: Wed, 12 Jun 2024 09:22:14 -0500 Subject: [PATCH] Fix tests after upstream change to `Node::to_string()` --- test/project/main.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/project/main.gd b/test/project/main.gd index 665582fd..50df65ea 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())