Index: webkit/fileapi/file_system_util_unittest.cc |
diff --git a/webkit/fileapi/file_system_util_unittest.cc b/webkit/fileapi/file_system_util_unittest.cc |
index c370618b593e78425dc83956557dd48ad9b76244..2b603410bb0ba269892640f3bbbe364528048f84 100644 |
--- a/webkit/fileapi/file_system_util_unittest.cc |
+++ b/webkit/fileapi/file_system_util_unittest.cc |
@@ -199,29 +199,5 @@ TEST_F(FileSystemUtilTest, RejectBadIsolatedFileSystemName) { |
EXPECT_FALSE(CrackIsolatedFileSystemName("foo:Isolated_", &fsid)); |
} |
-TEST_F(FileSystemUtilTest, AreSameFileSystem) { |
- FileSystemURL url_foo_temp_a = FileSystemURL::CreateForTest( |
- GURL("http://foo"), kFileSystemTypeTemporary, |
- base::FilePath::FromUTF8Unsafe("a")); |
- FileSystemURL url_foo_temp_b = FileSystemURL::CreateForTest( |
- GURL("http://foo"), kFileSystemTypeTemporary, |
- base::FilePath::FromUTF8Unsafe("b")); |
- FileSystemURL url_foo_perm_a = FileSystemURL::CreateForTest( |
- GURL("http://foo"), kFileSystemTypePersistent, |
- base::FilePath::FromUTF8Unsafe("a")); |
- FileSystemURL url_bar_temp_a = FileSystemURL::CreateForTest( |
- GURL("http://bar"), kFileSystemTypeTemporary, |
- base::FilePath::FromUTF8Unsafe("a")); |
- FileSystemURL url_bar_perm_a = FileSystemURL::CreateForTest( |
- GURL("http://bar"), kFileSystemTypePersistent, |
- base::FilePath::FromUTF8Unsafe("a")); |
- |
- EXPECT_TRUE(AreSameFileSystem(url_foo_temp_a, url_foo_temp_a)); |
- EXPECT_TRUE(AreSameFileSystem(url_foo_temp_a, url_foo_temp_b)); |
- EXPECT_FALSE(AreSameFileSystem(url_foo_temp_a, url_foo_perm_a)); |
- EXPECT_FALSE(AreSameFileSystem(url_foo_temp_a, url_bar_temp_a)); |
- EXPECT_FALSE(AreSameFileSystem(url_foo_temp_a, url_bar_perm_a)); |
-} |
- |
} // namespace (anonymous) |
} // namespace fileapi |