| Index: chrome/common/extensions/docs/server2/patch_servlet_test.py
|
| diff --git a/chrome/common/extensions/docs/server2/patch_servlet_test.py b/chrome/common/extensions/docs/server2/patch_servlet_test.py
|
| index 022b150798f6c0a0aa01abf53defbe7a6666ba3f..0dcebaa29ba8b8d44681f07cc7917427a384796d 100755
|
| --- a/chrome/common/extensions/docs/server2/patch_servlet_test.py
|
| +++ b/chrome/common/extensions/docs/server2/patch_servlet_test.py
|
| @@ -129,17 +129,16 @@ class PatchServletTest(unittest.TestCase):
|
|
|
| # extensions/runtime.html is removed in the patch, should redirect to the
|
| # apps version.
|
| - self._AssertRedirect('extensions/runtime.html', issue,
|
| - 'apps/runtime.html')
|
| + self._AssertRedirect('extensions/runtime', issue, 'apps/runtime')
|
|
|
| # apps/runtime.html is not removed.
|
| - self._RenderAndAssertEqual('apps/runtime.html', issue)
|
| + self._RenderAndAssertEqual('apps/runtime', issue)
|
|
|
| # test_foo.html is added in the patch.
|
| - self._AssertOk('extensions/test_foo.html', issue)
|
| + self._AssertOk('extensions/test_foo', issue)
|
|
|
| # Invalid issue number results in a 404.
|
| - self._AssertNotFound('extensions/index.html', '11111')
|
| + self._AssertNotFound('extensions/index', '11111')
|
|
|
| def testXssRedirect(self):
|
| def is_redirect(from_host, from_path, to_url):
|
|
|