We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4139ea commit fad7f38Copy full SHA for fad7f38
webware/PSP/Tests/TestUtils.py
@@ -50,7 +50,7 @@ def testCheckAttributes(self):
50
for attrs in ({'man': 1}, {'man': 1, 'opt': 1}):
51
checkAttributes('test', attrs, (['man'], ['opt']))
52
PSPParserException = PSPUtils.PSPParserException
53
- for attrs in ({}, {'man': 1}, {'man': 1, 'noopt': 1}):
+ for attrs in ({}, {'opt': 1}, {'man': 1, 'noopt': 1}):
54
self.assertRaises(
55
PSPParserException, checkAttributes,
56
'test', attrs, (['man'], ['opt']))
0 commit comments