blob: 9759f92e66a4d9b9cc4a36580bc8cfeebd3f8f58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
From 31933c1e9e455d4c039cbbc4daf0bee85691729b Mon Sep 17 00:00:00 2001
From: Sebastian Bergmann <sb@sebastian-bergmann.de>
Date: Thu, 26 Jun 2025 13:13:55 +0200
Subject: [PATCH] Closes #31
---
tests/ContextTest.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/ContextTest.php b/tests/ContextTest.php
index eec3f4f..b261f72 100644
--- a/tests/ContextTest.php
+++ b/tests/ContextTest.php
@@ -107,7 +107,7 @@ public function testContainsFound(array|object $value, int $key): void
* @param array<mixed>|object $value
*/
#[DataProvider('valuesProvider')]
- public function testContainsNotFound(array|object $value): void
+ public function testContainsNotFound(array|object $value, int $key): void
{
$context = new Context;
|