Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1739)

Unified Diff: tests/multi_processing/test_lib.py

Issue 334410043: [plaso] Moved storage implementations (Closed)
Patch Set: Changes after rebase Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/multi_processing/test_lib.py
diff --git a/tests/multi_processing/test_lib.py b/tests/multi_processing/test_lib.py
index 3d38c8a6035b2259937a2da3afc1f7ca46cd9639..0bf127f1aa09a294c2a27cc5d757febe04a81371 100644
--- a/tests/multi_processing/test_lib.py
+++ b/tests/multi_processing/test_lib.py
@@ -5,7 +5,7 @@ from __future__ import unicode_literals
from plaso.engine import knowledge_base
from plaso.parsers import mediator as parsers_mediator
-from plaso.storage import fake_storage
+from plaso.storage.fake import writer as fake_writer
from tests import test_lib as shared_test_lib
@@ -66,6 +66,6 @@ class MultiProcessingTestCase(shared_test_lib.BaseTestCase):
Returns:
FakeStorageWriter: storage writer.
"""
- storage_writer = fake_storage.FakeStorageWriter(session)
+ storage_writer = fake_writer.FakeStorageWriter(session)
storage_writer.Open()
return storage_writer

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b