Skip to content

Commit 8808054

Browse files
committed
Merge branch 'eol_eoy' of https://github.com/biocpy/biocutils into eol_eoy
2 parents fa94261 + 4ac96b5 commit 8808054

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/test_NamedList.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def test_NamedList_delitem():
309309

310310
with pytest.raises(KeyError):
311311
del x["Missing"]
312-
312+
313313
with pytest.raises(IndexError):
314314
del x[10]
315315

@@ -329,4 +329,4 @@ def test_NamedList_dict_methods():
329329
y = NamedList([10, 20])
330330
assert list(y.keys()) == []
331331
assert list(y.values()) == [10, 20]
332-
assert list(y.items()) == [("0", 10), ("1", 20)]
332+
assert list(y.items()) == [("0", 10), ("1", 20)]

tests/test_Names.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,4 +256,4 @@ def test_Names_is_unique():
256256
assert not y.is_unique
257257

258258
empty = Names([])
259-
assert empty.is_unique
259+
assert empty.is_unique

0 commit comments

Comments
 (0)