Skip to content

Commit

Permalink
Increase limits for flakey appveyor tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ostrolucky committed Oct 13, 2019
1 parent 6f54733 commit 8a04886
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function testNoServer()
$connection = new Connection(self::VAR_DUMPER_SERVER);
$start = microtime(true);
$this->assertFalse($connection->write($data));
$this->assertLessThan(1, microtime(true) - $start);
$this->assertLessThan(4, microtime(true) - $start);
}

private function getServerProcess(): Process
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ public function testDestruct()
$duration = microtime(true) - $start;

$this->assertGreaterThan(1, $duration);
$this->assertLessThan(3, $duration);
$this->assertLessThan(4, $duration);
}

public function testProxy()
Expand Down

0 comments on commit 8a04886

Please sign in to comment.