From 1b0997342988f1c51cea15c99e419ee87bf56fac Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 8 Jan 2025 13:09:00 +0100 Subject: [PATCH] Correct comment --- tests/RunForMultipleTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/RunForMultipleTest.php b/tests/RunForMultipleTest.php index aa8b48b5..c82385f6 100644 --- a/tests/RunForMultipleTest.php +++ b/tests/RunForMultipleTest.php @@ -37,7 +37,7 @@ test('runForMultiple runs the passed closure for the right tenants', function() }; // tenancy()->runForMultiple([], ...) shouldn't do anything - // No users should be created -- the closure should not be run at all + // No users should be created -- the closure should not run at all tenancy()->runForMultiple([], $createUser('none')); // Try the same with an empty collection -- the result should be the same for any traversable tenancy()->runForMultiple(collect(), $createUser('none'));