Skip to content

Commit

Permalink
fix import path in test
Browse files Browse the repository at this point in the history
  • Loading branch information
f-hafner committed Jan 29, 2024
1 parent e30336f commit 85e3f20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orangecontrib/storynavigation/tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
import unittest
from orangecontrib.text.corpus import Corpus
from orangecontrib.text.preprocess import BASE_TOKENIZER
import storynavigation.modules.util as util
import orangecontrib.storynavigation.modules.util as util

class TestUtil(unittest.TestCase):

def setUp(self):
self.short_testdata = Corpus.from_file("storynavigation/tests/short-testdata.tab")
self.short_testdata = Corpus.from_file("orangecontrib/storynavigation/tests/short-testdata.tab")
self.short_testdata = BASE_TOKENIZER(self.short_testdata)

def test_tupelize_corpus(self):
Expand Down

0 comments on commit 85e3f20

Please sign in to comment.