Skip to content

Commit

Permalink
Change imports to relative ones.
Browse files Browse the repository at this point in the history
  • Loading branch information
wRAR committed Apr 1, 2024
1 parent cef5764 commit 5ad2a96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/test_matcher.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import pytest

from tests.util import load_json_fixture
from url_matcher import Patterns, URLMatcher
from url_matcher.matcher import IncludePatternsWithoutDomainError

from .util import load_json_fixture

PATTERNS_FIXTURE = load_json_fixture("patterns")
CORNER_CASES_FIXTURE = load_json_fixture("patterns_corner_cases")
RULES_FIXTURE = load_json_fixture("rules")
Expand Down
3 changes: 2 additions & 1 deletion tests/test_patterns.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import pytest

from tests.util import load_json_fixture
from url_matcher.patterns import PatternMatcher

from .util import load_json_fixture

PATTERNS_FIXTURE = load_json_fixture("single_patterns")
CORNER_CASES_FIXTURE = load_json_fixture("single_patterns_corner_cases")

Expand Down

0 comments on commit 5ad2a96

Please sign in to comment.