mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Convert most 0/NULL pointers to nullptr
Courtesy of llvm cpp11-migrate 3.3
This commit is contained in:
parent
9da17424c6
commit
d8f44ef4f6
87 changed files with 253 additions and 253 deletions
|
@ -684,7 +684,7 @@ void RpcMethodTest::testChangeGlobalOption_withNotAllowedOption()
|
|||
void RpcMethodTest::testNoSuchMethod()
|
||||
{
|
||||
NoSuchMethodRpcMethod m;
|
||||
auto res = m.execute(createReq("make.hamburger"), 0);
|
||||
auto res = m.execute(createReq("make.hamburger"), nullptr);
|
||||
CPPUNIT_ASSERT_EQUAL(1, res.code);
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("No such method: make.hamburger"),
|
||||
getString(downcast<Dict>(res.param), "faultString"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue