Skip to content

Commit c9949af

Browse files
usrid → userid
1 parent a9b9312 commit c9949af

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

pynetdicom/tests/test_acse.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ def teardown_method(self):
601601
self.ae.shutdown()
602602

603603
@pytest.mark.parametrize("req, rsp", REFERENCE_USER_IDENTITY_REQUEST)
604-
def test_check_usrid_not_implemented(self, req, rsp):
604+
def test_check_userid_not_implemented(self, req, rsp):
605605
"""Check _check_user_identity if user hasn't implemented."""
606606
self.ae = ae = AE()
607607
ae.add_requested_context(Verification)
@@ -623,7 +623,7 @@ def test_check_usrid_not_implemented(self, req, rsp):
623623
assert response is None
624624

625625
@pytest.mark.parametrize("req, rsp", REFERENCE_USER_IDENTITY_REQUEST)
626-
def test_check_usrid_not_authorised(self, req, rsp):
626+
def test_check_userid_not_authorised(self, req, rsp):
627627
"""Check _check_user_identity if requestor not authorised"""
628628
port = get_port()
629629

@@ -661,7 +661,7 @@ def handle(event):
661661
scp.shutdown()
662662

663663
@pytest.mark.parametrize("req, rsp", REFERENCE_USER_IDENTITY_REQUEST)
664-
def test_check_usrid_authorised(self, req, rsp):
664+
def test_check_userid_authorised(self, req, rsp):
665665
"""Check _check_user_identity if requestor authorised"""
666666
port = get_port()
667667

@@ -702,7 +702,7 @@ def handle(event):
702702

703703
scp.shutdown()
704704

705-
def test_check_usrid_callback_exception(self):
705+
def test_check_userid_callback_exception(self):
706706
"""Check _check_user_identity if exception in callback"""
707707
port = get_port()
708708

@@ -740,7 +740,7 @@ def handle(event):
740740

741741
scp.shutdown()
742742

743-
def test_check_usrid_none(self):
743+
def test_check_userid_none(self):
744744
"""Check _check_user_identity if exception in callback"""
745745
port = get_port()
746746

@@ -771,7 +771,7 @@ def handle(event):
771771

772772
scp.shutdown()
773773

774-
def test_check_usrid_server_response_exception(self):
774+
def test_check_userid_server_response_exception(self):
775775
"""Check _check_user_identity exception in setting server response"""
776776
port = get_port()
777777

0 commit comments

Comments
 (0)