test: span: Use intended variable

It appears that the original intention was to use it in these
particular constructor tests: the variable is otherwise unused,
and `Span<const int>{ v }` is already tested.

Signed-off-by: Barnabás Pőcze <pobrn@protonmail.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Barnabás Pőcze 2024-12-03 15:12:53 +00:00 committed by Laurent Pinchart
parent 8f7155ddfb
commit b5fd7631e6

View file

@ -143,9 +143,9 @@ protected:
Span<const int>{ v };
/* Span<float>{ v }; */
Span<const int>{ v };
/* Span<int>{ v }; */
/* Span<const float>{ v }; */
Span<const int>{ cv };
/* Span<int>{ cv }; */
/* Span<const float>{ cv }; */
Span<int> dynamicSpan{ i };
Span<int>{ dynamicSpan };