From f556f429840530423862b95393aa0cd37805a0d9 Mon Sep 17 00:00:00 2001 From: Tim Carr Date: Mon, 15 Sep 2025 15:49:41 +0800 Subject: [PATCH] Tests: Fix Custom Fields Refresh Test --- tests/Integration/ResourceTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Integration/ResourceTest.php b/tests/Integration/ResourceTest.php index 93d3bc1..78e8f70 100644 --- a/tests/Integration/ResourceTest.php +++ b/tests/Integration/ResourceTest.php @@ -454,7 +454,7 @@ public function testRefreshCustomFields() // Assert order of data is in ascending alphabetical order. $this->assertEquals('Billing Address', reset($result)[ $this->resource->order_by ]); - $this->assertEquals('Test', end($result)[ $this->resource->order_by ]); + $this->assertEquals('URL', end($result)[ $this->resource->order_by ]); // Confirm resources stored in WordPress options. $resources = get_option($this->resource->settings_name);