mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 13:29:10 +08:00 
			
		
		
		
	Small message change (#195)
* Small message change Remove dot that generates confusion in wether that's part of the key or not * Fix format-check * Update tests
This commit is contained in:
		@@ -136,7 +136,7 @@ test("restore with no cache found", async () => {
 | 
			
		||||
    expect(failedMock).toHaveBeenCalledTimes(0);
 | 
			
		||||
 | 
			
		||||
    expect(infoMock).toHaveBeenCalledWith(
 | 
			
		||||
        `Cache not found for input keys: ${key}.`
 | 
			
		||||
        `Cache not found for input keys: ${key}`
 | 
			
		||||
    );
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
@@ -195,7 +195,7 @@ test("restore with restore keys and no cache found", async () => {
 | 
			
		||||
    expect(failedMock).toHaveBeenCalledTimes(0);
 | 
			
		||||
 | 
			
		||||
    expect(infoMock).toHaveBeenCalledWith(
 | 
			
		||||
        `Cache not found for input keys: ${key}, ${restoreKey}.`
 | 
			
		||||
        `Cache not found for input keys: ${key}, ${restoreKey}`
 | 
			
		||||
    );
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user