From 79288dcd51ff9f3264bf7dce23f28ef5bae29abc Mon Sep 17 00:00:00 2001 From: Sergey Kudashev Date: Tue, 9 Apr 2024 15:59:02 +0300 Subject: [PATCH] Update ApprovalTest substitute the deprecated approveString method with the recommended --- php/tests/ApprovalTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/tests/ApprovalTest.php b/php/tests/ApprovalTest.php index 30c2a3cf21..ef906bc3ee 100644 --- a/php/tests/ApprovalTest.php +++ b/php/tests/ApprovalTest.php @@ -39,6 +39,6 @@ public function testThirtyDays(): void $output = ob_get_clean(); - Approvals::approveString($output); + Approvals::verifyString($output); } }