mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
clang-format-3.9
This commit is contained in:
parent
a7fcf83bdf
commit
aa4ea8889c
51 changed files with 332 additions and 271 deletions
|
@ -77,8 +77,9 @@ void CookieStorageTest::testStore()
|
|||
CPPUNIT_ASSERT_EQUAL((size_t)1, st.size());
|
||||
CPPUNIT_ASSERT(st.contains(*goodCookie()));
|
||||
|
||||
auto anotherCookie =
|
||||
[]() { return createCookie("k", "v", "mirror", true, "/", true); };
|
||||
auto anotherCookie = []() {
|
||||
return createCookie("k", "v", "mirror", true, "/", true);
|
||||
};
|
||||
CPPUNIT_ASSERT(st.store(anotherCookie(), now));
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)2, st.size());
|
||||
CPPUNIT_ASSERT(st.contains(*anotherCookie()));
|
||||
|
@ -107,8 +108,9 @@ void CookieStorageTest::testStore()
|
|||
CPPUNIT_ASSERT_EQUAL((size_t)1, st.size());
|
||||
CPPUNIT_ASSERT(st.contains(*anotherCookie()));
|
||||
|
||||
auto fromNumericHost =
|
||||
[]() { return createCookie("k", "v", "192.168.1.1", true, "/", false); };
|
||||
auto fromNumericHost = []() {
|
||||
return createCookie("k", "v", "192.168.1.1", true, "/", false);
|
||||
};
|
||||
CPPUNIT_ASSERT(st.store(fromNumericHost(), now));
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)2, st.size());
|
||||
CPPUNIT_ASSERT(st.contains(*fromNumericHost()));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue