Skip to content

Commit

Permalink
Fixup GDScript test using non-deterministic ids
Browse files Browse the repository at this point in the history
Follow-up to godotengine#73870.
  • Loading branch information
akien-mga authored and krokoschlange committed May 25, 2023
1 parent 2ea64ab commit 3140c19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Expand Up @@ -5,5 +5,7 @@ extends RefCounted
@export_category("RefCounted")

func test():
prints("Not shadowed", Resource.new())
prints("Not shadowed", RefCounted.new())
var res = Resource.new()
var ref = RefCounted.new()
prints("Resource class not shadowed:", res is Resource)
prints("RefCounted class not shadowed:", ref is RefCounted)
@@ -1,3 +1,3 @@
GDTEST_OK
Not shadowed <Resource#-9223371975785708326>
Not shadowed <RefCounted#-9223371975768931110>
Resource class not shadowed: true
RefCounted class not shadowed: true

0 comments on commit 3140c19

Please sign in to comment.