We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a3c34e commit 14bb30eCopy full SHA for 14bb30e
tests/Functional/OrgCommandsTest.php
@@ -198,7 +198,11 @@ public function testOrgSiteListCommandWithLabelFilter()
198
{
199
$partial_site_name = substr($this->getSiteName(), 0, -1);
200
$orgSites = $this->terminusJsonResponse(
201
- "org:site:list --fields=id,label --filter='label*=" . $partial_site_name . "' " . $this->getOrg()
+ sprintf(
202
+ "org:site:list --fields=id,label --filter='label*=%s' %s",
203
+ $partial_site_name,
204
+ $this->getOrg()
205
+ )
206
);
207
$this->assertIsArray(
208
$orgSites,
0 commit comments