Skip to content

Commit 1e89673

Browse files
committed
Fix field order in test
1 parent af306f7 commit 1e89673

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

features/media-import.feature

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,16 @@ Feature: Manage WordPress attachments
179179
When I run `wp post get {ATTACHMENT_ID} --format=csv --fields=post_title,post_excerpt,post_content`
180180
Then STDOUT should contain:
181181
"""
182-
post_content,"Desc\Here"
183182
post_title,"My\Title"
183+
"""
184+
And STDOUT should contain:
185+
"""
184186
post_excerpt,"Caption\Here"
185187
"""
188+
And STDOUT should contain:
189+
"""
190+
post_content,"Desc\Here"
191+
"""
186192

187193
When I run `wp post meta get {ATTACHMENT_ID} _wp_attachment_image_alt`
188194
Then STDOUT should be:

0 commit comments

Comments
 (0)