From 1ae5f073ee79de1873a5d6596ade25cf1a923358 Mon Sep 17 00:00:00 2001 From: Duncan McClean Date: Wed, 20 Nov 2024 16:29:22 +0000 Subject: [PATCH 1/2] Fix incorrect namespaces in tests --- tests/Antlers/Runtime/ArithmeticTest.php | 2 ++ tests/Console/Commands/MakeDictionaryTest.php | 3 +-- tests/Extend/AddonTest.php | 2 +- tests/Feature/GraphQL/Fieldtypes/DictionaryFieldtypeTest.php | 3 +-- tests/Feature/SlugTest.php | 2 +- tests/Feature/Taxonomies/UpdateTermTest.php | 2 ++ tests/Feature/Users/UpdateUserTest.php | 2 ++ tests/Fieldtypes/ArrayTest.php | 2 +- tests/Modifiers/ToJsonTest.php | 2 +- tests/Modifiers/ToQsTest.php | 2 +- tests/Modifiers/WhereInTest.php | 2 +- tests/Routing/RouteBindingTest.php | 2 ++ tests/Validation/UniqueEntryValueTest.php | 2 ++ tests/Validation/UniqueTermValueTest.php | 2 ++ tests/Validation/UniqueUserValueTest.php | 2 ++ 15 files changed, 22 insertions(+), 10 deletions(-) diff --git a/tests/Antlers/Runtime/ArithmeticTest.php b/tests/Antlers/Runtime/ArithmeticTest.php index dfcd102d80f..811582c0ca0 100644 --- a/tests/Antlers/Runtime/ArithmeticTest.php +++ b/tests/Antlers/Runtime/ArithmeticTest.php @@ -1,5 +1,7 @@ Date: Wed, 20 Nov 2024 16:56:23 +0000 Subject: [PATCH 2/2] Fix route binding tests. --- tests/Routing/RouteBindingTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Routing/RouteBindingTest.php b/tests/Routing/RouteBindingTest.php index 51cdb2bc131..0d1b8dbd958 100644 --- a/tests/Routing/RouteBindingTest.php +++ b/tests/Routing/RouteBindingTest.php @@ -2,6 +2,7 @@ namespace Tests\Routing; +use Closure; use Facades\Tests\Factories\EntryFactory; use Illuminate\Contracts\Routing\BindingRegistrar; use Illuminate\Routing\Middleware\SubstituteBindings;