From 0d9724c70804255ca6ee8ba7bc7941edf2f7e0de Mon Sep 17 00:00:00 2001 From: elliot sawyer <354793+elliot-sawyer@users.noreply.github.com> Date: Tue, 11 Apr 2023 10:43:47 +1200 Subject: [PATCH] Update tests/php/Forms/TreeDropdownFieldTest.php Co-authored-by: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com> --- tests/php/Forms/TreeDropdownFieldTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/php/Forms/TreeDropdownFieldTest.php b/tests/php/Forms/TreeDropdownFieldTest.php index 61efe19a1..7636480c7 100644 --- a/tests/php/Forms/TreeDropdownFieldTest.php +++ b/tests/php/Forms/TreeDropdownFieldTest.php @@ -404,6 +404,6 @@ class TreeDropdownFieldTest extends SapphireTest $tree = $response->getBody(); $json = json_decode($tree); $children2After = count($json->children); - $this->assertEquals($children2After, 8, 'PartialMatch search for child has 8 results in fixture (excludes grandchild)'); + $this->assertEquals($children2After, 8, 'StartsWith search for child has 8 results in fixture (excludes grandchild)'); } }