Skip to content
Snippets Groups Projects
Unverified Commit 887a612c authored by Awais Qureshi's avatar Awais Qureshi Committed by GitHub
Browse files

Merge pull request #23617 from edx/awais786/BOM-1491

BOM-1491
parents ddfbbbc6 bdba07a1
No related merge requests found
......@@ -75,7 +75,7 @@ class TestManageGroupCommand(TestCase):
for data in TEST_DATA
for args, exception in (
((), 'too few arguments' if sys.version_info.major == 2 else 'required: group_name'), # no group name
(('x' * 81,), 'invalid group name'), # invalid group name
(('x' * 151,), 'invalid group name'), # invalid group name
((TEST_GROUP, 'some-other-group'), 'unrecognized arguments'), # multiple arguments
((TEST_GROUP, '--some-option', 'dummy'), 'unrecognized arguments') # unexpected option name
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment