Skip to content

Commit b32026f

Browse files
committed
s/Recieved/Received/ in test output
--HG-- extra : convert_revision : svn%3Aacbfec75-9323-0410-a652-858a13e371e0/trunk%401168
1 parent 5cc0cb6 commit b32026f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def runParserTest(self, innerHTML, input, expected, errors, treeClass):
9999
expected = convertExpected(expected)
100100
expected = attrlist.sub(sortattrs, expected)
101101
errorMsg = "\n".join(["\n\nInput:", input, "\nExpected:", expected,
102-
"\nRecieved:", output])
102+
"\nReceived:", output])
103103
self.assertEquals(expected, output, errorMsg)
104104
errStr = ["Line: %i Col: %i %s"%(line, col, constants.E[errorcode] % datavars) for
105105
((line,col), errorcode, datavars) in p.errors]

tests/test_treewalkers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def runTest(self, innerHTML, input, expected, errors, treeClass):
239239
self.assertEquals(expected, output, "\n".join([
240240
"", "Input:", input,
241241
"", "Expected:", expected,
242-
"", "Recieved:", output
242+
"", "Received:", output
243243
]))
244244
except NotImplementedError:
245245
pass # Amnesty for those that confess...

0 commit comments

Comments
 (0)