File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ const response::IdType& getFakeAppointmentId() noexcept
2323{
2424 static const auto s_fakeId = []() noexcept {
2525 std::string fakeIdString (" fakeAppointmentId" );
26- response::IdType::ByteData result (fakeIdString.size ());
26+ response::IdType result (fakeIdString.size ());
2727
2828 std::copy (fakeIdString.cbegin (), fakeIdString.cend (), result.begin ());
2929
@@ -37,7 +37,7 @@ const response::IdType& getFakeTaskId() noexcept
3737{
3838 static const auto s_fakeId = []() noexcept {
3939 std::string fakeIdString (" fakeTaskId" );
40- response::IdType::ByteData result (fakeIdString.size ());
40+ response::IdType result (fakeIdString.size ());
4141
4242 std::copy (fakeIdString.cbegin (), fakeIdString.cend (), result.begin ());
4343
@@ -51,7 +51,7 @@ const response::IdType& getFakeFolderId() noexcept
5151{
5252 static const auto s_fakeId = []() noexcept {
5353 std::string fakeIdString (" fakeFolderId" );
54- response::IdType::ByteData result (fakeIdString.size ());
54+ response::IdType result (fakeIdString.size ());
5555
5656 std::copy (fakeIdString.cbegin (), fakeIdString.cend (), result.begin ());
5757
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ TEST(ResponseCase, IdTypeCompareEqual)
2020{
2121 const auto fakeId = []() noexcept {
2222 std::string fakeIdString (" fakeId" );
23- response::IdType::ByteData result (fakeIdString.size ());
23+ response::IdType result (fakeIdString.size ());
2424
2525 std::copy (fakeIdString.cbegin (), fakeIdString.cend (), result.begin ());
2626
You can’t perform that action at this time.
0 commit comments