You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
313 B

extends "../base.gd"
func _init(a, b, context: String) -> void:
self.success = (a != b)
self.context = context
self.expected = "|%s| %s != |%s| %s" % [type2str(a), a, type2str(b), b]
self.result = "|%s| %s %s |%s| %s" % [type2str(a), a, ("is not equal to" if self.success else "is equal to"), type2str(b),b]