summaryrefslogtreecommitdiffstats
path: root/net/disk_cache/storage_block_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/disk_cache/storage_block_unittest.cc')
-rw-r--r--net/disk_cache/storage_block_unittest.cc12
1 files changed, 3 insertions, 9 deletions
diff --git a/net/disk_cache/storage_block_unittest.cc b/net/disk_cache/storage_block_unittest.cc
index abaa4a7..c9406b6 100644
--- a/net/disk_cache/storage_block_unittest.cc
+++ b/net/disk_cache/storage_block_unittest.cc
@@ -10,9 +10,7 @@
#include "testing/gtest/include/gtest/gtest.h"
TEST_F(DiskCacheTest, StorageBlock_LoadStore) {
- ScopedTestCache test_cache;
- FilePath filename = test_cache.path().AppendASCII("a_test");
-
+ FilePath filename = GetCacheFilePath().AppendASCII("a_test");
scoped_refptr<disk_cache::MappedFile> file(new disk_cache::MappedFile);
ASSERT_TRUE(CreateCacheTestFile(filename));
ASSERT_TRUE(file->Init(filename, 8192));
@@ -32,9 +30,7 @@ TEST_F(DiskCacheTest, StorageBlock_LoadStore) {
}
TEST_F(DiskCacheTest, StorageBlock_SetData) {
- ScopedTestCache test_cache;
- FilePath filename = test_cache.path().AppendASCII("a_test");
-
+ FilePath filename = GetCacheFilePath().AppendASCII("a_test");
scoped_refptr<disk_cache::MappedFile> file(new disk_cache::MappedFile);
ASSERT_TRUE(CreateCacheTestFile(filename));
ASSERT_TRUE(file->Init(filename, 8192));
@@ -54,9 +50,7 @@ TEST_F(DiskCacheTest, StorageBlock_SetData) {
}
TEST_F(DiskCacheTest, StorageBlock_SetModified) {
- ScopedTestCache test_cache;
- FilePath filename = test_cache.path().AppendASCII("a_test");
-
+ FilePath filename = GetCacheFilePath().AppendASCII("a_test");
scoped_refptr<disk_cache::MappedFile> file(new disk_cache::MappedFile);
ASSERT_TRUE(CreateCacheTestFile(filename));
ASSERT_TRUE(file->Init(filename, 8192));