From d1f00706bff58b863b0a1c5bf4adf39d36049d4c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 11 Nov 2022 09:54:35 +0100 Subject: Merging upstream version 10.0.1. Signed-off-by: Daniel Baumann --- tests/dataframe/unit/test_types.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/dataframe/unit/test_types.py') diff --git a/tests/dataframe/unit/test_types.py b/tests/dataframe/unit/test_types.py index 1f6c5dc..52f5d72 100644 --- a/tests/dataframe/unit/test_types.py +++ b/tests/dataframe/unit/test_types.py @@ -53,7 +53,10 @@ class TestDataframeTypes(unittest.TestCase): self.assertEqual("array", types.ArrayType(types.IntegerType()).simpleString()) def test_map(self): - self.assertEqual("map", types.MapType(types.IntegerType(), types.StringType()).simpleString()) + self.assertEqual( + "map", + types.MapType(types.IntegerType(), types.StringType()).simpleString(), + ) def test_struct_field(self): self.assertEqual("cola:int", types.StructField("cola", types.IntegerType()).simpleString()) -- cgit v1.2.3