From ac0c6d9b7339e95b1ad4533e968c3df4cc58f521 Mon Sep 17 00:00:00 2001 From: blancadesal Date: Mon, 19 Feb 2024 09:47:28 +0100 Subject: [PATCH] have tests use public APIs --- tests/test_dump.py | 2 +- tests/test_utils.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_dump.py b/tests/test_dump.py index 11fb316..7b5a345 100644 --- a/tests/test_dump.py +++ b/tests/test_dump.py @@ -3,7 +3,7 @@ import pytest -from mwsql.dump import Dump +from mwsql import Dump from .helpers import Capturing diff --git a/tests/test_utils.py b/tests/test_utils.py index dbbc5f6..1d27610 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -4,7 +4,8 @@ import pytest import requests -from mwsql.utils import _open_file, head, load +from mwsql import head, load +from mwsql.utils import _open_file from .helpers import Capturing