| Index: tools/foozzie/v8_foozzie_test.py | 
| diff --git a/tools/foozzie/v8_foozzie_test.py b/tools/foozzie/v8_foozzie_test.py | 
| index 8f6b7e32b8b47cd0f8bfd3a4c16690b361776223..b50702a57e2f4526a583e64407814df1fa1b56a2 100644 | 
| --- a/tools/foozzie/v8_foozzie_test.py | 
| +++ b/tools/foozzie/v8_foozzie_test.py | 
| @@ -21,12 +21,12 @@ class UnitTest(unittest.TestCase): | 
| 'x64', 'fullcode', 'x64', 'default') | 
| one = '' | 
| two = '' | 
| -    diff = None | 
| +    diff = None, 'none' | 
| self.assertEquals(diff, suppress.diff(one, two)) | 
|  | 
| one = 'a \n  b\nc();' | 
| two = 'a \n  b\nc();' | 
| -    diff = None | 
| +    diff = None, 'none' | 
| self.assertEquals(diff, suppress.diff(one, two)) | 
|  | 
| # Ignore line before caret, caret position, stack trace char numbers | 
| @@ -49,7 +49,7 @@ stack line :2: foo | 
| Validation of asm.js module failed: baz | 
| undefined | 
| """ | 
| -    diff = None | 
| +    diff = None, 'none' | 
| self.assertEquals(diff, suppress.diff(one, two)) | 
|  | 
| one = """ | 
| @@ -59,7 +59,7 @@ Extra line | 
| two = """ | 
| Still equal | 
| """ | 
| -    diff = '- Extra line' | 
| +    diff = '- Extra line', 'none' | 
| self.assertEquals(diff, suppress.diff(one, two)) | 
|  | 
| one = """ | 
| @@ -69,7 +69,7 @@ Still equal | 
| Still equal | 
| Extra line | 
| """ | 
| -    diff = '+ Extra line' | 
| +    diff = '+ Extra line', 'none' | 
| self.assertEquals(diff, suppress.diff(one, two)) | 
|  | 
| one = """ | 
| @@ -81,7 +81,7 @@ undefined | 
| otherfile.js: TypeError: undefined is not a constructor | 
| """ | 
| diff = """- somefile.js: TypeError: undefined is not a constructor | 
| -+ otherfile.js: TypeError: undefined is not a constructor""" | 
| ++ otherfile.js: TypeError: undefined is not a constructor""", 'none' | 
| self.assertEquals(diff, suppress.diff(one, two)) | 
|  | 
|  | 
|  |