Skip to content

Commit

Permalink
[vm] Use smallcase "snapshots" feature name
Browse files Browse the repository at this point in the history
(Fulfills remaining BaseVM tests.)
  • Loading branch information
ricab committed Dec 22, 2023
1 parent ad6ff2e commit 909258f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platform/backends/shared/base_virtual_machine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -550,12 +550,12 @@ std::shared_ptr<Snapshot> BaseVirtualMachine::make_specific_snapshot(const std::
const VMSpecs& /*specs*/,
std::shared_ptr<Snapshot> /*parent*/)
{
throw NotImplementedOnThisBackendException{"Snapshots"};
throw NotImplementedOnThisBackendException{"snapshots"};
}

std::shared_ptr<Snapshot> BaseVirtualMachine::make_specific_snapshot(const QString& /*filename*/)
{
throw NotImplementedOnThisBackendException{"Snapshots"};
throw NotImplementedOnThisBackendException{"snapshots"};
}

} // namespace multipass

0 comments on commit 909258f

Please sign in to comment.