From 0171e10a042d2d37717a5c38a6862e05b641f5c1 Mon Sep 17 00:00:00 2001 From: Reedy Date: Fri, 4 Nov 2022 17:06:23 -0600 Subject: [PATCH] ApiQueryExtractsTest: Fix string interpolation Bug: T314096 Change-Id: I8fb67f318c2f4b30dd2ad05a5e1d035017e0b022 --- tests/phpunit/ApiQueryExtractsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/ApiQueryExtractsTest.php b/tests/phpunit/ApiQueryExtractsTest.php index 3d9bbc1..8997a92 100644 --- a/tests/phpunit/ApiQueryExtractsTest.php +++ b/tests/phpunit/ApiQueryExtractsTest.php @@ -241,7 +241,7 @@ class ApiQueryExtractsTest extends \MediaWikiIntegrationTestCase { ], 'Multiple matches' => [ - "${marker}First\n${marker}Second", + "{$marker}First\n{$marker}Second", 'wiki', "\n=== First ===\n\n=== Second ===", ],