Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Held <ilovemilk@wusa.io>2018-08-28 19:16:00 +0300
committerMatthias Held <ilovemilk@wusa.io>2018-08-28 19:16:00 +0300
commit7b90b4ba0e1027ad0f9b0572aafacff68f0014ce (patch)
tree55ebfe44592de28b71d40aa19a8ca917b2120abf /tests/Unit
parent82474c2dc4333f32f03cb0258f0371ce8059f2da (diff)
Fix status code
Diffstat (limited to 'tests/Unit')
-rw-r--r--tests/Unit/Controller/ScanControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/Controller/ScanControllerTest.php b/tests/Unit/Controller/ScanControllerTest.php
index 9565bac..13960e2 100644
--- a/tests/Unit/Controller/ScanControllerTest.php
+++ b/tests/Unit/Controller/ScanControllerTest.php
@@ -211,7 +211,7 @@ class ScanControllerTest extends TestCase
$result = $controller->filesToScan();
$this->assertTrue($result instanceof JSONResponse);
- $this->assertEquals($result->getStatus(), Http::STATUS_ACCEPTED);
+ $this->assertEquals($result->getStatus(), Http::STATUS_OK);
}
public function dataScanSequence()