Skip to content

Commit

Permalink
Change: use restructured imports in dependency graph test
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasHargarter committed Jan 30, 2025
1 parent ad39133 commit 192d38b
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions tests/standalone_plugins/test_dependency_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@
from pathlib import Path
from unittest.mock import patch

from troubadix.standalone_plugins.dependency_graph import (
Dependency,
Feed,
Script,
from troubadix.standalone_plugins.dependency_graph.cli import parse_args
from troubadix.standalone_plugins.dependency_graph.dependency_graph import (
create_graph,
get_feed,
main,
parse_args,
)
from troubadix.standalone_plugins.dependency_graph.models import (
Dependency,
Feed,
Script,
)

NASL_DIR = "tests/standalone_plugins/nasl"
Expand Down

0 comments on commit 192d38b

Please sign in to comment.