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:
Diffstat (limited to 'tests/Unit/Controller/SettingsControllerTest.php')
-rw-r--r--tests/Unit/Controller/SettingsControllerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Unit/Controller/SettingsControllerTest.php b/tests/Unit/Controller/SettingsControllerTest.php
index 8c2fd5f..47812a8 100644
--- a/tests/Unit/Controller/SettingsControllerTest.php
+++ b/tests/Unit/Controller/SettingsControllerTest.php
@@ -66,7 +66,7 @@ class SettingsControllerTest extends TestCase
$result = $controller->findAll();
$this->assertTrue($result instanceof JSONResponse);
- $this->assertEquals($result->getStatus(), Http::STAUTS_OK);
+ $this->assertEquals($result->getStatus(), Http::STATUS_OK);
}
public function testChangeColorMode()
@@ -81,6 +81,6 @@ class SettingsControllerTest extends TestCase
$result = $controller->update(1, 0);
$this->assertTrue($result instanceof JSONResponse);
- $this->assertEquals($result->getStatus(), Http::STAUTS_OK);
+ $this->assertEquals($result->getStatus(), Http::STATUS_OK);
}
}