Skip to content

Commit

Permalink
Corrected imports in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JackAtOmenApps committed Nov 22, 2020
1 parent 19cd426 commit a95b774
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
from setuptools import setup

version = '0.1.0'
version = '0.1.1'

classifiers = [
"Development Status :: 3 - Alpha",
Expand Down
6 changes: 3 additions & 3 deletions tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
from django.test import TestCase
from django.core.exceptions import ValidationError
from django_postgresql_dag.exceptions import NodeNotReachableException, GraphModelsCannotBeParsedException, IncorrectUsageException
from django_postgresql_dag.transformations import _filter_order, edges_from_nodes_queryset, nodes_from_edges_queryset, nx_from_queryset, model_to_dict
from django_postgresql_dag.transformations import _ordered_filter, edges_from_nodes_queryset, nodes_from_edges_queryset, nx_from_queryset, model_to_dict
from django_postgresql_dag.query_builders import AncestorQuery, DescendantQuery, UpwardPathQuery, DownwardPathQuery, ConnectedGraphQuery

# from .dag_output import expected_dag_output
from .models import NetworkNode, NetworkEdge
from .models import NetworkNode, NetworkEdge, NodeSet, EdgeSet

logging.basicConfig(level=logging.DEBUG)

Expand Down

0 comments on commit a95b774

Please sign in to comment.