Change text message in unit-test related to cache-restore file

This commit is contained in:
Ivan Zosimov 2022-04-01 12:26:59 +02:00
parent b427445125
commit c1691a39b4

View file

@ -24,7 +24,7 @@ describe('restoreCache', () => {
getCacheDirectoryPathSpy.mockImplementation( getCacheDirectoryPathSpy.mockImplementation(
(PackageManager: PackageManagerInfo) => { (PackageManager: PackageManagerInfo) => {
return new Promise<string>(resolve => { return new Promise<string>(resolve => {
resolve('Some cache directory path'); resolve('cache_directory_path');
}); });
} }
); );