spelling: occurred

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
pull/528/head
Josh Soref 5 days ago
parent 2c2977fbc8
commit 4b7aaecd5c

@ -51,7 +51,7 @@ describe('restoreCache', () => {
);
});
it('should inform if cache hit is not occured', async () => {
it('should inform if cache hit is not occurred', async () => {
//Arrange
hashFilesSpy.mockImplementation((somePath: string) => {
return new Promise<string>(resolve => {
@ -74,7 +74,7 @@ describe('restoreCache', () => {
expect(infoSpy).toHaveBeenCalledWith(`Cache is not found`);
});
it('should set output if cache hit is occured', async () => {
it('should set output if cache hit is occurred', async () => {
//Arrange
hashFilesSpy.mockImplementation((somePath: string) => {
return new Promise<string>(resolve => {

Loading…
Cancel
Save