Skip to content

Commit 4a02106

Browse files
committed
TR updates, second round
1 parent 4efd5df commit 4a02106

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

python-unittest/test_collections.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ def test_sequence_objects(self):
77
b = "Hello"
88
self.assertSequenceEqual(a, b)
99

10+
def test_string_objects(self):
11+
a = "Hello"
12+
b = "Hello"
13+
self.assertMultiLineEqual(a, b)
14+
1015
def test_list_objects(self):
1116
a = [1, 2, 3, 4, 5]
1217
b = [1, 2, 3, 4, 5]

0 commit comments

Comments
 (0)