Skip to content

Commit a95b774

Browse files
Corrected imports in tests
1 parent 19cd426 commit a95b774

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44
from setuptools import setup
55

6-
version = '0.1.0'
6+
version = '0.1.1'
77

88
classifiers = [
99
"Development Status :: 3 - Alpha",

tests/test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
from django.test import TestCase
66
from django.core.exceptions import ValidationError
77
from django_postgresql_dag.exceptions import NodeNotReachableException, GraphModelsCannotBeParsedException, IncorrectUsageException
8-
from django_postgresql_dag.transformations import _filter_order, edges_from_nodes_queryset, nodes_from_edges_queryset, nx_from_queryset, model_to_dict
8+
from django_postgresql_dag.transformations import _ordered_filter, edges_from_nodes_queryset, nodes_from_edges_queryset, nx_from_queryset, model_to_dict
9+
from django_postgresql_dag.query_builders import AncestorQuery, DescendantQuery, UpwardPathQuery, DownwardPathQuery, ConnectedGraphQuery
910

10-
# from .dag_output import expected_dag_output
11-
from .models import NetworkNode, NetworkEdge
11+
from .models import NetworkNode, NetworkEdge, NodeSet, EdgeSet
1212

1313
logging.basicConfig(level=logging.DEBUG)
1414

0 commit comments

Comments
 (0)