Skip to content

Commit

Permalink
Merge pull request #98 from Ostorlab/fix/update_import_oxo_utils_defi…
Browse files Browse the repository at this point in the history
…nitions

Update ostorlab.utils.definitions import
  • Loading branch information
3asm authored Dec 6, 2024
2 parents b971a30 + a2f9870 commit 3097453
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from ostorlab.agent import definitions as agent_definitions
from ostorlab.runtimes import definitions as runtime_definitions
from ostorlab.utils import defintions
from ostorlab.utils import definitions
from ostorlab.agent.message import message as m

from agent import whatweb_agent
Expand Down Expand Up @@ -110,10 +110,10 @@ def whatweb_test_agent(
key="whatweb",
redis_url="redis://redis",
args=[
defintions.Arg(
definitions.Arg(
name="schema", type="string", value=json.dumps("https").encode()
),
defintions.Arg(
definitions.Arg(
name="port", type="number", value=json.dumps(443).encode()
),
],
Expand All @@ -133,13 +133,13 @@ def whatweb_agent_with_scope_arg(
key="whatweb",
redis_url="redis://redis",
args=[
defintions.Arg(
definitions.Arg(
name="schema", type="string", value=json.dumps("https").encode()
),
defintions.Arg(
definitions.Arg(
name="port", type="number", value=json.dumps(443).encode()
),
defintions.Arg(
definitions.Arg(
name="scope_domain_regex",
type="string",
value=json.dumps(".*ostorlab.co").encode(),
Expand Down

0 comments on commit 3097453

Please sign in to comment.