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

Unified Diff: tests/parsers/sqlite_plugins/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/parsers/sqlite_plugins/test_lib.py
diff --git a/tests/parsers/sqlite_plugins/test_lib.py b/tests/parsers/sqlite_plugins/test_lib.py
index 2ca52e794272aeb92f937364d5a08514d5f63811..564e30933ef3e16298f2f4d83a44d796bce90b0f 100644
--- a/tests/parsers/sqlite_plugins/test_lib.py
+++ b/tests/parsers/sqlite_plugins/test_lib.py
@@ -9,7 +9,7 @@ from dfvfs.resolver import resolver as path_spec_resolver
from plaso.containers import sessions
from plaso.parsers import sqlite
-from plaso.storage import fake_storage
+from plaso.storage.fake import writer as fake_writer
from tests.parsers import test_lib
@@ -36,7 +36,7 @@ class SQLitePluginTestCase(test_lib.ParserTestCase):
A storage writer object (instance of FakeStorageWriter).
"""
session = sessions.Session()
- storage_writer = fake_storage.FakeStorageWriter(session)
+ storage_writer = fake_writer.FakeStorageWriter(session)
storage_writer.Open()
file_entry = self._GetTestFileEntry(path_segments)

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