Replace disallowed operators in tests/

This commit is contained in:
Dylan K. Taylor
2022-01-20 16:48:36 +00:00
parent 4d55935bd8
commit 6846f1e78a
4 changed files with 5 additions and 5 deletions

View File

@ -72,7 +72,7 @@ abstract class Test{
}
public function isTimedOut() : bool{
return !$this->isFinished() and time() - $this->timeout > $this->startTime;
return !$this->isFinished() && time() - $this->timeout > $this->startTime;
}
protected function setTimeout(int $timeout) : void{