Fix name of parallel array assignement test

There are two variables and just one value, so I think
`test_parallel_assignments_with_too_few_values` is a better name.
This commit is contained in:
Raphael Nestler
2022-02-10 14:44:52 +01:00
committed by GitHub
parent b77b8d90d8
commit 353e281470

View File

@@ -24,7 +24,7 @@ class AboutArrayAssignment < Neo::Koan
assert_equal __(["Smith","III"]), last_name
end
def test_parallel_assignments_with_too_few_variables
def test_parallel_assignments_with_too_few_values
first_name, last_name = ["Cher"]
assert_equal __("Cher"), first_name
assert_equal __(nil), last_name