Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion includes/admin/feedzy-rss-feeds-import.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public function register_import_post_type() {
'name' => __( 'Import Posts', 'feedzy-rss-feeds' ),
'singular_name' => __( 'Import Post', 'feedzy-rss-feeds' ),
'add_new' => __( 'New Import', 'feedzy-rss-feeds' ),
'add_new_item' => false,
'add_new_item' => __( 'New Import', 'feedzy-rss-feeds' ),
'edit_item' => false,
'new_item' => __( 'New Import Post', 'feedzy-rss-feeds' ),
'view_item' => __( 'View Import', 'feedzy-rss-feeds' ),
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/specs/import.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ test.describe( 'Feed Import', () => {
// Select the first post created by feeds import. Check the featured image.
await page.getByRole('link', { name: 'Posts', exact: true }).click({ force: true });
await page.locator('#the-list tr').first().locator('a.row-title').click({ force: true });
await expect( page.getByLabel('Edit or replace the image') ).toBeVisible(); // Featured image is added.
await expect( page.getByLabel('Edit or replace the featured image') ).toBeVisible(); // Featured image is added.
});

test( 'importing feed with chained actions', async({ admin, page, requestUtils }) => {
Expand Down
Loading