Skip to content

Commit 4d10b53

Browse files
committed
Updated error message
1 parent bb3bbea commit 4d10b53

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

src/Command/Argument/TimeSeries/CommonArguments.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function retentionMsecs(int $retentionPeriod): self
5555
public function ignore(int $maxTimeDiff, float $maxValDiff): self
5656
{
5757
if ($maxTimeDiff < 0 || $maxValDiff < 0) {
58-
throw new UnexpectedValueException('Ignore does not accept non-positive values');
58+
throw new UnexpectedValueException('Ignore does not accept negative values');
5959
}
6060

6161
array_push($this->arguments, 'IGNORE', $maxTimeDiff, $maxValDiff);

tests/Predis/Command/Argument/TimeSeries/CommonArgumentsTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public function testCreatesArgumentsWithIgnoreModifier(): void
123123
public function testIgnoreModifierThrowsExceptionOnNonPositiveValues(): void
124124
{
125125
$this->expectException(UnexpectedValueException::class);
126-
$this->expectExceptionMessage('Ignore does not accept non-positive values');
126+
$this->expectExceptionMessage('Ignore does not accept negative values');
127127

128128
$this->arguments->ignore(-1, -1);
129129
}

tests/Predis/Command/Redis/Search/FTSEARCH_Test.php

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
use Predis\Command\Argument\Search\SchemaFields\TextField;
2020
use Predis\Command\Argument\Search\SearchArguments;
2121
use Predis\Command\Redis\PredisCommandTestCase;
22-
use Predis\Response\ServerException;
2322

2423
/**
2524
* @group commands

tests/Predis/Command/Redis/TimeSeries/TSADD_Test.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function testFilterArgumentsThrowsExceptionOnNonPositiveValues(): void
6161
$command = $this->getCommand();
6262

6363
$this->expectException(UnexpectedValueException::class);
64-
$this->expectExceptionMessage('Ignore does not accept non-positive values');
64+
$this->expectExceptionMessage('Ignore does not accept negative values');
6565

6666
$command->setArguments(['key', 123123121321, 1.0, (new AddArguments())->ignore(-2, -1)]);
6767
}

tests/Predis/Command/Redis/TimeSeries/TSALTER_Test.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function testFilterArgumentsThrowsExceptionOnNonPositiveValues(): void
6262
$command = $this->getCommand();
6363

6464
$this->expectException(UnexpectedValueException::class);
65-
$this->expectExceptionMessage('Ignore does not accept non-positive values');
65+
$this->expectExceptionMessage('Ignore does not accept negative values');
6666

6767
$command->setArguments(['key', 123123121321, 1.0, (new AlterArguments())->ignore(-2, -1)]);
6868
}

tests/Predis/Command/Redis/TimeSeries/TSCREATE_Test.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function testFilterArgumentsThrowsExceptionOnNonPositiveValues(): void
6161
$command = $this->getCommand();
6262

6363
$this->expectException(UnexpectedValueException::class);
64-
$this->expectExceptionMessage('Ignore does not accept non-positive values');
64+
$this->expectExceptionMessage('Ignore does not accept negative values');
6565

6666
$command->setArguments(['key', 123123121321, 1.0, (new CreateArguments())->ignore(-2, -1)]);
6767
}

0 commit comments

Comments
 (0)