Fix tests.

This commit is contained in:
James Cole
2018-07-20 16:28:54 +02:00
parent 2d66a9212f
commit 49ff6febe5
14 changed files with 789 additions and 582 deletions

View File

@@ -98,7 +98,7 @@ class ReportControllerTest extends TestCase
];
$uri = route('popup.general') . '?' . http_build_query($arguments);
$response = $this->get($uri);
$response->assertStatus(500);
$response->assertStatus(200);
}
/**
@@ -206,7 +206,7 @@ class ReportControllerTest extends TestCase
$uri = route('popup.general') . '?' . http_build_query($arguments);
$response = $this->get($uri);
$response->assertStatus(500);
$response->assertStatus(200);
}
/**
@@ -364,6 +364,6 @@ class ReportControllerTest extends TestCase
];
$uri = route('popup.general') . '?' . http_build_query($arguments);
$response = $this->get($uri);
$response->assertStatus(500);
$response->assertStatus(200);
}
}