Skip to content

Commit 69563be

Browse files
style
1 parent 9edd164 commit 69563be

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

tests/system/small/engines/test_concat.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ def test_engines_concat_self(
2929
scalars_array_value: array_value.ArrayValue,
3030
engine,
3131
):
32-
catted = scalars_array_value.concat([scalars_array_value, scalars_array_value])
33-
assert_equivalence_execution(catted.node, REFERENCE_ENGINE, engine)
32+
result = scalars_array_value.concat([scalars_array_value, scalars_array_value])
33+
34+
assert_equivalence_execution(result.node, REFERENCE_ENGINE, engine)
3435

3536

3637
@pytest.mark.parametrize("engine", ["polars", "bq"], indirect=True)
@@ -45,5 +46,6 @@ def test_engines_concat_filtered_sorted(
4546
["float64_col", "int64_too"]
4647
)
4748

48-
catted = input_1.concat([input_2, input_1, input_2])
49-
assert_equivalence_execution(catted.node, REFERENCE_ENGINE, engine)
49+
result = input_1.concat([input_2, input_1, input_2])
50+
51+
assert_equivalence_execution(result.node, REFERENCE_ENGINE, engine)

0 commit comments

Comments
 (0)