The used Godot version:
v3.5.1.stable.official [6fed1ffa3]
OS including version:
all
Describe the bug
I want to compare a string value agains an expected via parameterized test.
The test are failing because the string values from the arguments `test_parameters = ["a test message"]' are distorted by removed all spaces,
Steps to Reproduce
func test_with_string_paramset(
value : Array,
expected : String,
test_parameters : Array = [
[ ["a"], "a" ],
[ ["a", "very", "long", "argument"], "a very long argument" ],
]
):
assert_that(" ".join(value)).is_equal(expected)
The used Godot version: v3.5.1.stable.official [6fed1ffa3]
OS including version: all
Describe the bug I want to compare a string value agains an expected via parameterized test. The test are failing because the string values from the arguments `test_parameters = ["a test message"]' are distorted by removed all spaces,
Steps to Reproduce
Minimal reproduction project: