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
path: root/tests
diff options
context:
space:
mode:
authorMatthias <ilovemilk@wusa.io>2019-05-17 17:44:00 +0300
committerMatthias <ilovemilk@wusa.io>2019-05-17 17:44:00 +0300
commit7fa86f1d601a931852fd888bb3b73e2fd7c68426 (patch)
treeb2c921a6106ab3d27ef68967593ed21737122623 /tests
parentd8ae5922cecde8d651db143589547257c5e0377a (diff)
fix typo
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/Analyzer/EntropyAnalyzerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/Analyzer/EntropyAnalyzerTest.php b/tests/Unit/Analyzer/EntropyAnalyzerTest.php
index af220df..479c58b 100644
--- a/tests/Unit/Analyzer/EntropyAnalyzerTest.php
+++ b/tests/Unit/Analyzer/EntropyAnalyzerTest.php
@@ -109,7 +109,7 @@ class EntropyAnalyzerTest extends TestCase
$this->entropy->method('streamStandardDeviation')
->willReturn(0.004);
- $this->assertEquals($this->invokePrivate($entropyAnalyzer, 'calculateStandardDeviationOfEntropy', [$nodes, EntropyAnalyzer::BLOCK_SIZE]), 0.004);
+ $this->assertEquals($this->invokePrivate($entropyAnalyzer, 'calculateStandardDeviationOfEntropy', [$node, EntropyAnalyzer::BLOCK_SIZE]), 0.004);
}
public function testCalculateEntropyOfFile()