Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Oct 15, 2024
1 parent 24368b1 commit 66e5d8a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/unittests/skills/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from logging import Logger
from threading import Event, Thread
from time import time
from unittest.mock import Mock, patch
from unittest.mock import Mock
from os.path import join, dirname, isdir
from ovos_workshop.skills.ovos import OVOSSkill

Expand Down Expand Up @@ -324,7 +324,6 @@ def test_register_intent(self):
pass

def test_register_intent_file(self):
from ovos_workshop.skills.ovos import OVOSSkill
skill = OVOSSkill(bus=self.bus, skill_id=self.skill_id)
skill._lang_resources = dict()
skill.intent_service = Mock()
Expand All @@ -351,7 +350,6 @@ def test_register_intent_file(self):
f"{skill.skill_id}:time.intent", uk_intent_file, "uk-ua")

def test_register_entity_file(self):
from ovos_workshop.skills.ovos import OVOSSkill
skill = OVOSSkill(bus=self.bus, skill_id=self.skill_id)
skill._lang_resources = dict()
skill.intent_service = Mock()
Expand Down

0 comments on commit 66e5d8a

Please sign in to comment.