Skip to content

Commit a07f9b2

Browse files
committed
fix cs
1 parent f6ef6d0 commit a07f9b2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/IntervalTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,10 @@ public function testNoSpaceIntervalIsExclusiveOf(): void
145145
$this->expectException(InvalidArgumentException::class);
146146
$this->expectExceptionMessage('The difference between min and max must be greater than 1 for an exclusive interval.');
147147

148-
$data = [1, 2, 3];
148+
$data = [1, 2, 3];
149149
$filter = static fn($datum): bool => $datum > 1;
150-
$min = 2;
151-
$max = 3;
150+
$min = 2;
151+
$max = 3;
152152

153153
Interval::isExclusiveOf($data, $filter, $min, $max);
154154
}

0 commit comments

Comments
 (0)