From 478549e0a3e0f56d91a697cf92cb423d951f8961 Mon Sep 17 00:00:00 2001 From: Eddie Daniels Date: Mon, 9 Sep 2024 07:26:33 -0800 Subject: [PATCH] Update tests/wpunit/ModelTest.php Co-authored-by: Jason Adams --- tests/wpunit/ModelTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/wpunit/ModelTest.php b/tests/wpunit/ModelTest.php index ba2ed62..aab6a85 100644 --- a/tests/wpunit/ModelTest.php +++ b/tests/wpunit/ModelTest.php @@ -307,7 +307,7 @@ public function invalidTypeProvider() { [ 'firstName', 100 ], [ 'emails', 'Not an array' ], [ 'microseconds', 'Not a float' ], - [ 'number', 'Not a number' ] + [ 'number', '12' ] // numeric strings do not work; must be int or float ]; } }