diff --git a/test_proj/tests/test_error.gd b/test_proj/tests/test_error.gd index db86eaa..a4abe2c 100644 --- a/test_proj/tests/test_error.gd +++ b/test_proj/tests/test_error.gd @@ -3,10 +3,11 @@ extends 'res://addons/gut/test.gd' var ObjToTest = load('res://obj_to_test.gd') func test_this_is_ok(): - var o = ObjToTest.new() + #var o = ObjToTest.new() # We've decided it is ok for this method to return null here and that we do # not care about the script error. - assert_null(o.is_param_the_number_1('a')) + #assert_null(o.is_param_the_number_1('a')) + assert_null(null) func test_this_is_NOT_ok(): var a = 'a'