Skip to content

Commit

Permalink
fixup! [AIRFLOW-6058] Running tests with pytest (#6472)
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk committed Dec 10, 2019
1 parent 51cca35 commit 036165f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/contrib/sensors/test_hdfs_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

class HdfsSensorFolderTests(unittest.TestCase):
def setUp(self):
from tests.core import FakeHDFSHook
from tests.test_core import FakeHDFSHook
self.hook = FakeHDFSHook
self.log = logging.getLogger()
self.log.setLevel(logging.DEBUG)
Expand Down Expand Up @@ -124,7 +124,7 @@ def test_should_be_non_empty_directory_fail(self):

class HdfsSensorRegexTests(unittest.TestCase):
def setUp(self):
from tests.core import FakeHDFSHook
from tests.test_core import FakeHDFSHook
self.hook = FakeHDFSHook
self.log = logging.getLogger()
self.log.setLevel(logging.DEBUG)
Expand Down

0 comments on commit 036165f

Please sign in to comment.