We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7b6c1e commit 9c55c95Copy full SHA for 9c55c95
1 file changed
tests/TicketsTest.php
@@ -65,16 +65,19 @@ public function testTicketCreate()
65
// Member access
66
if(!is_null($this->member)){
67
$response = $this->actingAs($this->member)->get(route($this->main_route . '.create'));
68
+ $this->versionAssertStatus($response, 200);
69
}
70
71
// Agent access
72
if(!is_null($this->agent)){
73
$response = $this->actingAs($this->agent)->get(route($this->main_route . '.create'));
74
75
76
77
// Admin access
78
if(!is_null($this->admin)){
79
$response = $this->actingAs($this->admin)->get(route($this->main_route . '.create'));
80
81
82
83
0 commit comments