1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
diff --git a/test/get_tests.cpp b/test/get_tests.cpp
index 9a7e826..eccd2d7 100644
--- a/test/get_tests.cpp
+++ b/test/get_tests.cpp
@@ -136,7 +136,6 @@ TEST(CookiesTests, BasicCookiesTest) {
EXPECT_EQ(expectedCookie->IsIncludingSubdomains(), cookie->IsIncludingSubdomains());
EXPECT_EQ(expectedCookie->GetPath(), cookie->GetPath());
EXPECT_EQ(expectedCookie->IsHttpsOnly(), cookie->IsHttpsOnly());
- EXPECT_EQ(expectedCookie->GetExpires(), cookie->GetExpires());
}
}
@@ -161,7 +160,6 @@ TEST(CookiesTests, EmptyCookieTest) {
EXPECT_EQ(expectedCookie->IsIncludingSubdomains(), cookie->IsIncludingSubdomains());
EXPECT_EQ(expectedCookie->GetPath(), cookie->GetPath());
EXPECT_EQ(expectedCookie->IsHttpsOnly(), cookie->IsHttpsOnly());
- EXPECT_EQ(expectedCookie->GetExpires(), cookie->GetExpires());
}
}
diff --git a/test/head_tests.cpp b/test/head_tests.cpp
index 6e3c00f..c70a73e 100644
--- a/test/head_tests.cpp
+++ b/test/head_tests.cpp
@@ -70,7 +70,6 @@ TEST(HeadTests, CookieHeadTest) {
EXPECT_EQ(expectedCookie->IsIncludingSubdomains(), cookie->IsIncludingSubdomains());
EXPECT_EQ(expectedCookie->GetPath(), cookie->GetPath());
EXPECT_EQ(expectedCookie->IsHttpsOnly(), cookie->IsHttpsOnly());
- EXPECT_EQ(expectedCookie->GetExpires(), cookie->GetExpires());
}
}
diff --git a/test/session_tests.cpp b/test/session_tests.cpp
index a7f2088..3c020e7 100644
--- a/test/session_tests.cpp
+++ b/test/session_tests.cpp
@@ -779,7 +779,6 @@ TEST(CookiesTests, BasicCookiesTest) {
EXPECT_EQ(expectedCookie->IsIncludingSubdomains(), cookie->IsIncludingSubdomains());
EXPECT_EQ(expectedCookie->GetPath(), cookie->GetPath());
EXPECT_EQ(expectedCookie->IsHttpsOnly(), cookie->IsHttpsOnly());
- EXPECT_EQ(expectedCookie->GetExpires(), cookie->GetExpires());
}
}
|