Skip to content

Commit fad7f38

Browse files
committed
Fix wrong dict literal in test
1 parent c4139ea commit fad7f38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webware/PSP/Tests/TestUtils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def testCheckAttributes(self):
5050
for attrs in ({'man': 1}, {'man': 1, 'opt': 1}):
5151
checkAttributes('test', attrs, (['man'], ['opt']))
5252
PSPParserException = PSPUtils.PSPParserException
53-
for attrs in ({}, {'man': 1}, {'man': 1, 'noopt': 1}):
53+
for attrs in ({}, {'opt': 1}, {'man': 1, 'noopt': 1}):
5454
self.assertRaises(
5555
PSPParserException, checkAttributes,
5656
'test', attrs, (['man'], ['opt']))

0 commit comments

Comments
 (0)