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-09-26 21:07:16 +0300
committerMatthias Held <ilovemilk@wusa.io>2018-09-26 21:07:16 +0300
commit130522e395cff0444baa02a538d7cb9e75d690d1 (patch)
treeaa598cebb4f7ac811682d54c35394cf6cb78a616 /tests/Unit/Settings/PersonalSectionTest.php
parent3df04bbf354c7762578df38b451354635646e551 (diff)
Chane display name from ransomware detection to ransomware recovery
Signed-off-by: Matthias Held <matthias.held@uni-konstanz.de>
Diffstat (limited to 'tests/Unit/Settings/PersonalSectionTest.php')
-rw-r--r--tests/Unit/Settings/PersonalSectionTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Unit/Settings/PersonalSectionTest.php b/tests/Unit/Settings/PersonalSectionTest.php
index 3e04a18..3992612 100644
--- a/tests/Unit/Settings/PersonalSectionTest.php
+++ b/tests/Unit/Settings/PersonalSectionTest.php
@@ -63,10 +63,10 @@ class PersonalSectionTest extends TestCase {
public function testGetName() {
$this->l->expects($this->once())
->method('t')
- ->with('Ransomware detection')
- ->willReturn('Ransomware detection');
+ ->with('Ransomware recovery')
+ ->willReturn('Ransomware recovery');
- $this->assertSame('Ransomware detection', $this->personalSection->getName());
+ $this->assertSame('Ransomware recovery', $this->personalSection->getName());
}
public function testGetPriority() {