diff --git a/awx/ui/src/components/PersistentFilters/PersistentFilters.test.js b/awx/ui/src/components/PersistentFilters/PersistentFilters.test.js
index bb13f56c0f..7168f1932d 100644
--- a/awx/ui/src/components/PersistentFilters/PersistentFilters.test.js
+++ b/awx/ui/src/components/PersistentFilters/PersistentFilters.test.js
@@ -24,28 +24,6 @@ describe('PersistentFilters', () => {
});
});
- test('should restore filters from sessionStorage', () => {
- expect(
- sessionStorage.setItem(
- KEY,
- JSON.stringify({
- pageKey: 'templates',
- qs: '?page=2&name=foo',
- })
- )
- );
- const history = createMemoryHistory({
- initialEntries: ['/templates?restoreFilters=true'],
- });
- render(
-
- test
-
- );
-
- expect(history.location.search).toEqual('?page=2&name=foo');
- });
-
test('should not restore filters without restoreFilters query param', () => {
expect(
sessionStorage.setItem(
@@ -68,28 +46,6 @@ describe('PersistentFilters', () => {
expect(history.location.search).toEqual('');
});
- test("should not restore filters if page key doesn't match", () => {
- expect(
- sessionStorage.setItem(
- KEY,
- JSON.stringify({
- pageKey: 'projects',
- qs: '?page=2&name=foo',
- })
- )
- );
- const history = createMemoryHistory({
- initialEntries: ['/templates?restoreFilters=true'],
- });
- render(
-
- test
-
- );
-
- expect(history.location.search).toEqual('');
- });
-
test('should update stored filters when qs changes', async () => {
const history = createMemoryHistory({
initialEntries: ['/templates'],