fix tests

This commit is contained in:
Saeed Vaziry
2024-03-27 13:32:25 +01:00
parent b6179d6693
commit c66c50835a
22 changed files with 29 additions and 8 deletions

View File

@ -25,7 +25,7 @@ public function test_see_ssls_list()
'server' => $this->server,
'site' => $this->site,
]))
->assertOk()
->assertSuccessful()
->assertSee($ssl->type);
}
@ -37,7 +37,7 @@ public function test_see_ssls_list_with_no_ssls()
'server' => $this->server,
'site' => $this->site,
]))
->assertOk()
->assertSuccessful()
->assertSeeText(__("You don't have any SSL certificates yet!"));
}