runtime: Add missing test mock function

Added a missing `vcmock.Sandbox.GetHypervisorPid()` function.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt 2021-03-17 10:36:34 +00:00
parent 50f317dcff
commit 12e9f7f82c

View File

@ -254,3 +254,7 @@ func (s *Sandbox) GetAgentURL() (string, error) {
} }
return "", nil return "", nil
} }
func (s *Sandbox) GetHypervisorPid() (int, error) {
return 0, nil
}