Skip to content

Commit

Permalink
ok finally realized intake changed
Browse files Browse the repository at this point in the history
  • Loading branch information
kthyng committed Sep 12, 2023
1 parent 7cdbaa9 commit 9f4cfcc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/test_axds_cat.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ def json(self):


def test_intake_opener():
assert "open_axds_cat" in intake.openers
# intake.openers isn't available anymore
assert "open_axds_cat" in intake.__dir__()


@mock.patch("requests.get")
Expand Down
3 changes: 2 additions & 1 deletion tests/test_axds_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ def json(self):


def test_intake_opener():
assert "open_axds_sensor" in intake.openers
# intake.openers isn't available anymore
assert "open_axds_sensor" in intake.__dir__()


def test_binned():
Expand Down

0 comments on commit 9f4cfcc

Please sign in to comment.