diff --git a/__tests__/SetupStore-test.js b/__tests__/SetupStore-test.js index 2df2918ce1..4b9f73238b 100644 --- a/__tests__/SetupStore-test.js +++ b/__tests__/SetupStore-test.js @@ -59,6 +59,7 @@ describe('SetupStore', function () { pit('only installs binaries if virtualbox is installed', function () { virtualBox.installed.mockReturnValue(true); setupUtil.compareVersions.mockReturnValue(0); + setupUtil.needsBinaryFix.mockReturnValue(true); return setupStore.steps().install.run().then(() => { expect(util.exec).toBeCalledWith('macsudo copycmd && fixcmd'); });