diff options
Diffstat (limited to 'webkit/quota/quota_manager_unittest.cc')
-rw-r--r-- | webkit/quota/quota_manager_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/quota/quota_manager_unittest.cc b/webkit/quota/quota_manager_unittest.cc index b3d71e4..54f74dd 100644 --- a/webkit/quota/quota_manager_unittest.cc +++ b/webkit/quota/quota_manager_unittest.cc @@ -895,10 +895,10 @@ TEST_F(QuotaManagerTest, GetAndSetPerststentHostQuota) { GetPersistentHostQuota("foo.com"); SetPersistentHostQuota("foo.com", 200); GetPersistentHostQuota("foo.com"); - SetPersistentHostQuota("foo.com", 300); + SetPersistentHostQuota("foo.com", 300000000000ll); GetPersistentHostQuota("foo.com"); MessageLoop::current()->RunAllPending(); - EXPECT_EQ(300, quota()); + EXPECT_EQ(300000000000ll, quota()); } TEST_F(QuotaManagerTest, GetAndSetPersistentUsageAndQuota) { |