mirror of
https://github.com/actions/cache.git
synced 2025-03-13 11:47:00 +00:00
Update new GHE-not-supported message in tests
This commit is contained in:
parent
00c5476d11
commit
efa472d023
2 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ test("restore on GHES should no-op", async () => {
|
|||
expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1);
|
||||
expect(setCacheHitOutputMock).toHaveBeenCalledWith(false);
|
||||
expect(logWarningMock).toHaveBeenCalledWith(
|
||||
"Cache action is not supported on GHES"
|
||||
"Cache action is not supported on GHES. See https://github.com/actions/cache/issues/505 for more details"
|
||||
);
|
||||
});
|
||||
|
||||
|
|
|
@ -111,7 +111,7 @@ test("save on GHES should no-op", async () => {
|
|||
|
||||
expect(saveCacheMock).toHaveBeenCalledTimes(0);
|
||||
expect(logWarningMock).toHaveBeenCalledWith(
|
||||
"Cache action is not supported on GHES"
|
||||
"Cache action is not supported on GHES. See https://github.com/actions/cache/issues/505 for more details"
|
||||
);
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue