Skip to content

Commit eb05b33

Browse files
Fix typo
1 parent 69ba583 commit eb05b33

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pynetdicom/tests/test_primitives.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -944,14 +944,14 @@ def test_exceptions(self):
944944
with pytest.raises(ValueError):
945945
assoc.diagnostic = 8
946946

947-
# calling_presentation_addresss
947+
# calling_presentation_address
948948
with pytest.raises(TypeError):
949949
assoc.calling_presentation_address = ["10.40.94.43", 105]
950950

951951
with pytest.raises(TypeError):
952952
assoc.calling_presentation_address = (105, "10.40.94.43")
953953

954-
# called_presentation_addresss
954+
# called_presentation_address
955955
with pytest.raises(TypeError):
956956
assoc.called_presentation_address = ["10.40.94.43", 105]
957957

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ force-exclude = ".venv*|env*|/_.*_dict.py$"
9191

9292

9393
[tool.codespell]
94-
ignore-words-list = "ddress,pres,requestor,requestors"
94+
ignore-words-list = "ddress,halp,ot,pres,requestor,requestors"
9595
skip = "test*.py,docs*,build*,env*"
9696

9797

0 commit comments

Comments
 (0)