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
23
23
{
24
24
static const auto s_fakeId = []() noexcept {
25
25
std::string fakeIdString (" fakeAppointmentId" );
26
- response::IdType::ByteData result (fakeIdString.size ());
26
+ response::IdType result (fakeIdString.size ());
27
27
28
28
std::copy (fakeIdString.cbegin (), fakeIdString.cend (), result.begin ());
29
29
@@ -37,7 +37,7 @@ const response::IdType& getFakeTaskId() noexcept
37
37
{
38
38
static const auto s_fakeId = []() noexcept {
39
39
std::string fakeIdString (" fakeTaskId" );
40
- response::IdType::ByteData result (fakeIdString.size ());
40
+ response::IdType result (fakeIdString.size ());
41
41
42
42
std::copy (fakeIdString.cbegin (), fakeIdString.cend (), result.begin ());
43
43
@@ -51,7 +51,7 @@ const response::IdType& getFakeFolderId() noexcept
51
51
{
52
52
static const auto s_fakeId = []() noexcept {
53
53
std::string fakeIdString (" fakeFolderId" );
54
- response::IdType::ByteData result (fakeIdString.size ());
54
+ response::IdType result (fakeIdString.size ());
55
55
56
56
std::copy (fakeIdString.cbegin (), fakeIdString.cend (), result.begin ());
57
57
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ TEST(ResponseCase, IdTypeCompareEqual)
20
20
{
21
21
const auto fakeId = []() noexcept {
22
22
std::string fakeIdString (" fakeId" );
23
- response::IdType::ByteData result (fakeIdString.size ());
23
+ response::IdType result (fakeIdString.size ());
24
24
25
25
std::copy (fakeIdString.cbegin (), fakeIdString.cend (), result.begin ());
26
26
You can’t perform that action at this time.
0 commit comments