Skip to content

Commit

Permalink
Misc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
estringana committed Apr 25, 2024
1 parent 4d40ccf commit bf37a1e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion tests/Frameworks/Laravel/Version_10_x/routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
Route::get('error', [CommonSpecsController::class, 'error']);
Route::get('login/auth', [LoginTestController::class, 'auth'])->name('login');
Route::get('login/signup', [LoginTestController::class, 'register']);
Route::get('/behind_auth', [LoginTestController::class, 'behind_auth'])->name('behind_auth')->middleware('auth');
Route::get('/behind_auth', [LoginTestController::class, 'behind_auth'])->name('behind_auth')->middleware('auth');
10 changes: 0 additions & 10 deletions tests/WebServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,16 +206,6 @@ public function start()
$this->server->start();
}

for ($i = 0; $i < 50; $i++) {
$fp = @fsockopen($this->host, $this->port, $errno, $errstr, 1);
if ($fp) {
fclose($fp);
break;
}
usleep(100000);
}


$this->sapi->start();
usleep(500000);
}
Expand Down

0 comments on commit bf37a1e

Please sign in to comment.