This commit is contained in:
Will McGugan 2019-12-27 10:10:47 +00:00
parent 836a94bc0e
commit ef1e2e75ba
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
name: Python package
name: Test Rich module
on: [push]

View File

@ -185,7 +185,7 @@ def test_split():
assert split[0] == line1
assert split[1] == line2
assert Text("foo").split("\n") == [Text("foo")]
assert list(Text("foo").split("\n")) == [Text("foo")]
def test_divide():