Skip to content

Commit f9a67f7

Browse files
committed
(#310) Remove leftover notions of adapters in test description
1 parent d860ec5 commit f9a67f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/window.class.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jest.mock('jimp', () => {
77
});
88

99
describe("Window class", () => {
10-
it("should retrieve the window region via its native adapter", async () => {
10+
it("should retrieve the window region via provider", async () => {
1111
// GIVEN
1212
const windowMock = jest.fn();
1313
const providerRegistryMock = mockPartial<ProviderRegistry>({
@@ -28,7 +28,7 @@ describe("Window class", () => {
2828
expect(windowMock).toBeCalledWith(mockWindowHandle);
2929
});
3030

31-
it("should retrieve the window title via its native adapter", async () => {
31+
it("should retrieve the window title via provider", async () => {
3232
// GIVEN
3333
const windowMock = jest.fn();
3434
const providerRegistryMock = mockPartial<ProviderRegistry>({

0 commit comments

Comments
 (0)