Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: tests/test_fs_source.py

Issue 29465720: Issue 4970 - Document the library API of python-abp (Closed)
Patch Set: Rebase to match the new master and retouche the docstrings. Created Oct. 24, 2017, 4:06 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/test_fs_source.py
===================================================================
--- a/tests/test_fs_source.py
+++ b/tests/test_fs_source.py
@@ -10,17 +10,17 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
import pytest
-from abp.filters import FSSource, NotFound
+from abp.filters.sources import FSSource, NotFound
@pytest.fixture
def fssource_dir(tmpdir):
tmpdir.mkdir('root')
not_in_source = tmpdir.join('not-in-source.txt')
not_in_source.write('! secret')
root = tmpdir.join('root')

Powered by Google App Engine
This is Rietveld