Skip to content

Commit

Permalink
Remove mock
Browse files Browse the repository at this point in the history
Fixes 1ba842f
  • Loading branch information
lahwaacz committed Jun 22, 2024
1 parent 2c980b7 commit 465301d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ test = [
"ipykernel",
"ipywidgets",
"matplotlib",
"mock",
"numpy",
"pandas",
"papermill",
Expand Down
6 changes: 1 addition & 5 deletions tests/app/execute_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@
import asyncio
import json
import re
from unittest import mock

import tornado.web

try:
from unittest import mock
except ImportError:
from unittest import mock


async def test_hello_world(http_server_client, base_url):
response = await http_server_client.fetch(base_url)
Expand Down

0 comments on commit 465301d

Please sign in to comment.