Skip to content
This repository was archived by the owner on Jan 20, 2019. It is now read-only.

Commit 8876f96

Browse files
committed
Decrease assertions
1 parent cc112fa commit 8876f96

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/ConverterDefaultTest.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,23 +41,19 @@ public function test_it_should_optimize_regexes()
4141

4242
public function test_it_generates_valid_regexes()
4343
{
44-
$this->verifyRange(10331, 20381, 0, 99999);
4544
$this->verifyRange(10031, 20081, 0, 59999);
4645
$this->verifyRange(10000, 20000, 0, 59999);
47-
$this->verifyRange(10301, 20101, 0, 99999);
4846
$this->verifyRange(102, 111, 0, 1000);
4947
$this->verifyRange(102, 110, 0, 1000);
5048
$this->verifyRange(102, 130, 0, 1000);
51-
$this->verifyRange(4173, 7981, 0, 99999);
5249
$this->verifyRange(3, 7, 0, 99);
5350
$this->verifyRange(1, 9, 0, 1000);
54-
$this->verifyRange(1000, 8632, 0, 99999);
5551
$this->verifyRange(1030, 20101, 0, 99999);
5652
$this->verifyRange(13, 8632, 0, 10000);
5753
$this->verifyRange(9, 11, 0, 100);
5854
$this->verifyRange(19, 21, 0, 100);
5955
$this->verifyRange(90, 98009, 0, 98999);
60-
$this->verifyRange(999, 10000, 1, 20000);
56+
$this->verifyRange(999, 10000, 1, 10000);
6157
}
6258

6359
private function verifyRange($min, $max, $from, $to)

0 commit comments

Comments
 (0)