Skip to content

Commit

Permalink
[tests] Use the new virtual_machine.h interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
luis4a0 committed May 26, 2021
1 parent e1b656c commit a4f04ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_base_virtual_machine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ struct StubBaseVirtualMachine : public mp::BaseVirtualMachine
state = s;
}

void stop()
void stop(bool force = false)
{
state = mp::VirtualMachine::State::off;
}
Expand All @@ -49,7 +49,7 @@ struct StubBaseVirtualMachine : public mp::BaseVirtualMachine
state = mp::VirtualMachine::State::running;
}

void shutdown()
void shutdown(bool force = false)
{
state = mp::VirtualMachine::State::off;
}
Expand Down

0 comments on commit a4f04ff

Please sign in to comment.