From 2ad368349a778e1470ce34473e9ce8ae7f30c856 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Tue, 4 Aug 2026 17:43:07 +0200 Subject: [PATCH] Test: Do not use deprecated `plugin status` command --- features/scaffold.feature | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/features/scaffold.feature b/features/scaffold.feature index 2cf2b0a5..4236e38a 100644 --- a/features/scaffold.feature +++ b/features/scaffold.feature @@ -353,18 +353,18 @@ Feature: WordPress code scaffolding And the wp-content/plugins/hello-world/readme.txt file should exist And the wp-content/plugins/hello-world/tests directory should exist - When I run `wp plugin status hello-world` + When I run `wp plugin get hello-world --fields=title,status,description` Then STDOUT should contain: """ - Status: Active + active """ And STDOUT should contain: """ - Name: Hello World + Hello World """ And STDOUT should contain: """ - Description: An awesome introductory plugin for WordPress + An awesome introductory plugin for WordPress """ Scenario: Scaffold a plugin and activate it