streams: Capitalize "ID" in invalid stream errors in API.

This commit changes the error message from "Invalid stream id"
to "Invalid stream ID" for cases where invalid stream IDs are
passed to API endpoints to make it consistent with other similar
error messages.
This commit is contained in:
Sahil Batra
2022-05-27 17:33:08 +05:30
committed by Tim Abbott
parent 1c90c50ec8
commit 708204290e
11 changed files with 50 additions and 50 deletions

View File

@@ -131,7 +131,7 @@ class TypingValidateToArgumentsTest(ZulipTestCase):
"topic": topic,
},
)
self.assert_json_error(result, "Invalid stream id")
self.assert_json_error(result, "Invalid stream ID")
class TypingHappyPathTestPMs(ZulipTestCase):