summaryrefslogtreecommitdiff
path: root/test/storage/cache_revalidate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/storage/cache_revalidate.cpp')
-rw-r--r--test/storage/cache_revalidate.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/storage/cache_revalidate.cpp b/test/storage/cache_revalidate.cpp
index ffc622f37c..fc65986a17 100644
--- a/test/storage/cache_revalidate.cpp
+++ b/test/storage/cache_revalidate.cpp
@@ -48,9 +48,7 @@ TEST_F(Storage, CacheRevalidateSame) {
EXPECT_EQ(nullptr, res2.error);
EXPECT_EQ(false, res2.stale);
- ASSERT_TRUE(res2.data.get());
- EXPECT_EQ("Response", *res2.data);
- // We use this to indicate that a 304 reply came back.
+ EXPECT_TRUE(res2.notModified);
EXPECT_LT(Seconds::zero(), res2.expires);
EXPECT_EQ(Seconds::zero(), res2.modified);
// We're not sending the ETag in the 304 reply, but it should still be there.
@@ -108,9 +106,7 @@ TEST_F(Storage, CacheRevalidateModified) {
EXPECT_EQ(nullptr, res2.error);
EXPECT_EQ(false, res2.stale);
- ASSERT_TRUE(res2.data.get());
- EXPECT_EQ("Response", *res2.data);
- // We use this to indicate that a 304 reply came back.
+ EXPECT_TRUE(res2.notModified);
EXPECT_LT(Seconds::zero(), res2.expires);
EXPECT_EQ(1420070400, res2.modified.count());
EXPECT_EQ("", res2.etag);