Skip to content

Commit a11fda9

Browse files
committed
[test_property.py] Fix Whitespace
1 parent e468a1f commit a11fda9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_property.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def test_value_extend(self):
279279
prop.extend(ext_prop)
280280
self.assertEqual(prop.values, ["a", "b", "c", "d", "e"])
281281

282-
ext_prop = Property(name="value extend", value=[1, 2 ,3])
282+
ext_prop = Property(name="value extend", value=[1, 2, 3])
283283
with self.assertRaises(ValueError):
284284
prop.extend(ext_prop)
285285
self.assertEqual(prop.values, ["a", "b", "c", "d", "e"])

0 commit comments

Comments
 (0)