Index: chrome/common/extensions/docs/server2/mock_file_system_test.py |
diff --git a/chrome/common/extensions/docs/server2/mock_file_system_test.py b/chrome/common/extensions/docs/server2/mock_file_system_test.py |
index 4cc351a03854f18083b6c298a93f96a3b6a64248..f2fe7d4aaa9a5caa0167ec1380b66c55fca3896e 100755 |
--- a/chrome/common/extensions/docs/server2/mock_file_system_test.py |
+++ b/chrome/common/extensions/docs/server2/mock_file_system_test.py |
@@ -83,7 +83,7 @@ class MockFileSystemTest(unittest.TestCase): |
'404.html': '0', |
'apps/': '0', |
'extensions/': '0' |
- }), fs.Stat('/')) |
+ }), fs.Stat('')) |
self.assertEqual(StatInfo('0'), fs.Stat('404.html')) |
self.assertEqual(StatInfo('0', child_versions={ |
'a11y.html': '0', |
@@ -100,7 +100,7 @@ class MockFileSystemTest(unittest.TestCase): |
'404.html': '1', |
'apps/': '0', |
'extensions/': '0' |
- }), fs.Stat('/')) |
+ }), fs.Stat('')) |
self.assertEqual(StatInfo('1'), fs.Stat('404.html')) |
self.assertEqual(StatInfo('0', child_versions={ |
'a11y.html': '0', |
@@ -122,7 +122,7 @@ class MockFileSystemTest(unittest.TestCase): |
'404.html': '2', |
'apps/': '2', |
'extensions/': '0' |
- }), fs.Stat('/')) |
+ }), fs.Stat('')) |
self.assertEqual(StatInfo('2'), fs.Stat('404.html')) |
self.assertEqual(StatInfo('2', child_versions={ |
'a11y.html': '0', |