Skip to content

Commit 9bf6d47

Browse files
committed
fix: update test for new sample field
1 parent 8e0aa14 commit 9bf6d47

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

samples/today/TodayMock.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,11 @@ std::optional<std::string> Appointment::getForceError() const
186186
throw std::runtime_error(R"ex(this error was forced)ex");
187187
}
188188

189+
std::vector<response::IdType> Appointment::getArray() const
190+
{
191+
return {};
192+
}
193+
189194
AppointmentEdge::AppointmentEdge(std::shared_ptr<Appointment> appointment)
190195
: _appointment(std::move(appointment))
191196
{

samples/today/TodayMock.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ class Appointment
146146
std::shared_ptr<const response::Value> getSubject() const noexcept;
147147
bool getIsNow() const noexcept;
148148
std::optional<std::string> getForceError() const;
149+
std::vector<response::IdType> getArray() const;
149150

150151
private:
151152
response::IdType _id;

0 commit comments

Comments
 (0)