From b2a2ca9345b775916cd81dd2b9c46aeeb7b4fac3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 13 Oct 2022 11:34:14 +0200 Subject: [PATCH] Fix: Data --- test/Unit/FactoryTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Unit/FactoryTest.php b/test/Unit/FactoryTest.php index cc24526e..0067375e 100644 --- a/test/Unit/FactoryTest.php +++ b/test/Unit/FactoryTest.php @@ -54,7 +54,7 @@ public function testFromRuleSetCreatesConfig(int $targetPhpVersion): void $rules = [ 'foo' => true, 'bar' => [ - 'baz', + 'baz' => true, ], ]; @@ -93,7 +93,7 @@ public function testFromRuleSetCreatesConfigWithOverrideRules(): void $rules = [ 'foo' => true, 'bar' => [ - 'baz', + 'baz' => true, ], ];