Chromium Code Reviews| Index: src/caterpillar_test.py |
| diff --git a/src/caterpillar_test.py b/src/caterpillar_test.py |
| index 6952c6699ed4d7b81cd67976e466a7dc62837275..4c645193b54b82f11c8899e31014d3aa45cf22a7 100755 |
| --- a/src/caterpillar_test.py |
| +++ b/src/caterpillar_test.py |
| @@ -687,7 +687,7 @@ class TestAddAppInfo(TestCaseWithOutputDir): |
| """Tests add_app_info writes the correct file.""" |
| chrome_app_manifest = { |
| 'app': {'background': {}}, |
| - 'name': 'tést app', |
| + 'name': 'tést app\'', |
|
Matt Giuca
2016/02/04 05:12:28
Good!
|
| } |
| caterpillar.add_app_info(self.output_path, chrome_app_manifest) |
| @@ -697,10 +697,10 @@ class TestAddAppInfo(TestCaseWithOutputDir): |
| self.assertEqual(app_info_js, """\ |
| chrome.caterpillar.manifest = { |
| - 'app': { |
| - 'background': {} |
| + "app": { |
| + "background": {} |
| }, |
| - 'name': 't\\u00e9st app' |
| + "name": "t\\u00e9st app'" |
| }; |
| """) |