Chromium Code Reviews| Index: test/inspector/testcfg.py |
| diff --git a/test/inspector/testcfg.py b/test/inspector/testcfg.py |
| index fc498aa113dcd0331ceb54a6d07dab5021c00f11..6995669a1592ee824cf447cadab2957ceab6665b 100644 |
| --- a/test/inspector/testcfg.py |
| +++ b/test/inspector/testcfg.py |
| @@ -71,7 +71,7 @@ |
| def ExpIterator(): |
| for line in expected_lines: |
| - if not line.strip(): continue |
| + if line.startswith("#") or not line.strip(): continue |
| yield line.strip() |
| def ActIterator(lines): |