Skip to content

Commit 15c847e

Browse files
authored
Update registration fail code (#308)
The fail code was updated from USERNAME_EXISTS to ACCOUNT_EXISTS: ircv3/ircv3-specifications@dd1efcf after this test and the initial implementations were already written.
1 parent 4e4fd4f commit 15c847e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

irctest/server_tests/account_registration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,5 +199,5 @@ def testBeforeConnect(self):
199199
msgs = self.getMessages("bar")
200200
fail_response = [msg for msg in msgs if msg.command == "FAIL"][0]
201201
self.assertMessageMatch(
202-
fail_response, params=["REGISTER", "USERNAME_EXISTS", ANYSTR, ANYSTR]
202+
fail_response, params=["REGISTER", "ACCOUNT_EXISTS", ANYSTR, ANYSTR]
203203
)

0 commit comments

Comments
 (0)