| Index: tools/isolate/trace_inputs_test.py
|
| diff --git a/tools/isolate/trace_inputs_test.py b/tools/isolate/trace_inputs_test.py
|
| index 04761a9393337dcb38b865c33bbba6935f303c41..ccc03b25ac4c11b443d5441407ef293fec1ff573 100755
|
| --- a/tools/isolate/trace_inputs_test.py
|
| +++ b/tools/isolate/trace_inputs_test.py
|
| @@ -170,8 +170,14 @@ if trace_inputs.get_flavor() == 'linux':
|
| try:
|
| self._load_context([], None)
|
| self.fail()
|
| - except AssertionError:
|
| - pass
|
| + except trace_inputs.TracingFailure, e:
|
| + expected = (
|
| + 'Found internal inconsitency in process lifetime detection',
|
| + None,
|
| + None,
|
| + None,
|
| + [])
|
| + self.assertEquals(expected, e.args)
|
|
|
| def test_close(self):
|
| lines = [
|
|
|