Skip to content

Commit 2ab4cfc

Browse files
committed
fix ci
1 parent 01ac8b3 commit 2ab4cfc

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

test/xmock_interpreter.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ namespace nl = nlohmann;
2020
namespace xeus
2121
{
2222

23+
xmock_interpreter::xmock_interpreter(const std::vector<const char*>& /*args*/)
24+
: interpreter(0, nullptr)
25+
{
26+
// Arguments intentionally ignored in mock interpreter
27+
}
28+
2329
void xmock_interpreter::configure_impl()
2430
{
2531
auto handle_comm_opened = [](xeus::xcomm&& comm, const xeus::xmessage&) {

test/xmock_interpreter.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace xeus
1818

1919
public:
2020

21-
xmock_interpreter() = default;
21+
xmock_interpreter(const std::vector<std::string>& args);
2222
virtual ~xmock_interpreter() = default;
2323

2424

0 commit comments

Comments
 (0)