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-07-20 00:04:13 +0300
committerMatthias Held <ilovemilk@wusa.io>2018-07-20 00:04:13 +0300
commit215f9032c63b70ded85e70b44b0538907551de4b (patch)
tree0907207a024b40236985dae26936251a531ddbfc /tests/Integration
parentfea0a00fcd59e6dd4c7d7e7fecd0739beea8de69 (diff)
Shorten database name
Diffstat (limited to 'tests/Integration')
-rw-r--r--tests/Integration/AppTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Integration/AppTest.php b/tests/Integration/AppTest.php
index 5116f93..d2ca4bd 100644
--- a/tests/Integration/AppTest.php
+++ b/tests/Integration/AppTest.php
@@ -76,7 +76,7 @@ abstract class AppTest extends PHPUnit_Framework_TestCase
protected function clearDatabase($user)
{
$sql = [
- 'DELETE FROM `*PREFIX*ransomware_detection_file_operation` WHERE `user_id` = ?',
+ 'DELETE FROM `*PREFIX*ransomware_detection` WHERE `user_id` = ?',
];
$db = $this->container->query(IDBConnection::class);
foreach ($sql as $query) {