diff --git a/src/components/AccountNotifications.test.tsx b/src/components/AccountNotifications.test.tsx
index 5d6e47373..69f86c8b7 100644
--- a/src/components/AccountNotifications.test.tsx
+++ b/src/components/AccountNotifications.test.tsx
@@ -1,4 +1,4 @@
-import TestRendener from 'react-test-renderer';
+import TestRenderer from 'react-test-renderer';
import { mockedGithubNotifications } from '../__mocks__/mockedData';
import { AccountNotifications } from './AccountNotifications';
@@ -15,7 +15,7 @@ describe('components/AccountNotifications.tsx', () => {
showAccountHostname: true,
};
- const tree = TestRendener.create();
+ const tree = TestRenderer.create();
expect(tree).toMatchSnapshot();
});
@@ -26,7 +26,7 @@ describe('components/AccountNotifications.tsx', () => {
showAccountHostname: true,
};
- const tree = TestRendener.create();
+ const tree = TestRenderer.create();
expect(tree).toMatchSnapshot();
});
});
diff --git a/src/components/fields/RadioGroup.test.tsx b/src/components/fields/RadioGroup.test.tsx
index f316c6d9f..38763e925 100644
--- a/src/components/fields/RadioGroup.test.tsx
+++ b/src/components/fields/RadioGroup.test.tsx
@@ -1,6 +1,6 @@
import { fireEvent, render, screen } from '@testing-library/react';
-import * as TestRendener from 'react-test-renderer';
+import * as TestRenderer from 'react-test-renderer';
import { FieldRadioGroup } from './RadioGroup';
@@ -18,7 +18,7 @@ describe('components/fields/radiogroup.tsx', () => {
};
it('should render ', () => {
- const tree = TestRendener.create();
+ const tree = TestRenderer.create();
expect(tree).toMatchSnapshot();
});