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 18:51:25 +0300
committerMatthias <ilovemilk@wusa.io>2019-05-17 18:51:25 +0300
commitdb713721f15b0215a24873e0bec0b4ed4819d902 (patch)
treeb5d883db5f60ad3c2ab29566883c85c88c19a6ba /tests
parent5d400514d0c9c870044fefbc8c8207079f2e2e58 (diff)
fix standard deviation value
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/Entropy/EntropyTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/Entropy/EntropyTest.php b/tests/Unit/Entropy/EntropyTest.php
index edc6100..84cd37a 100644
--- a/tests/Unit/Entropy/EntropyTest.php
+++ b/tests/Unit/Entropy/EntropyTest.php
@@ -65,7 +65,7 @@ class EntropyTest extends TestCase
$tests = [];
$tests[] = [[10, 2, 38, 23, 38, 23, 21], 12.298996];
$tests[] = [[10, 12, 23, 23, 16, 23, 21, 16], 4.898979];
- $tests[] = [[-5, 1, 8, 7, 2], 4.673328];
+ $tests[] = [[-5, 1, 8, 7, 2], 4.673329];
return $tests;
}