Skip to content

Commit

Permalink
更新数据库相关文件命名
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-clan committed Aug 29, 2024
1 parent 1adbd73 commit c1d2a12
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion httpfpt/common/send_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from httpfpt.common.errors import AssertError, SendRequestError
from httpfpt.common.log import log
from httpfpt.core.get_conf import httpfpt_config
from httpfpt.db.mysql_db import mysql_client
from httpfpt.db.mysql import mysql_client
from httpfpt.enums.request.body import BodyType
from httpfpt.enums.request.engin import EnginType
from httpfpt.enums.setup_type import SetupType
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion httpfpt/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from httpfpt.common.yaml_handler import read_yaml
from httpfpt.core.get_conf import httpfpt_config
from httpfpt.core.path_conf import httpfpt_path
from httpfpt.db.redis_db import redis_client
from httpfpt.db.redis import redis_client
from httpfpt.utils.case_auto_generator import auto_generate_testcases
from httpfpt.utils.request import case_data_parse as case_data
from httpfpt.utils.send_report.dingding import DingDing
Expand Down
2 changes: 1 addition & 1 deletion httpfpt/utils/assert_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

from httpfpt.common.errors import AssertSyntaxError, JsonPathFindError
from httpfpt.common.log import log
from httpfpt.db.mysql_db import mysql_client
from httpfpt.db.mysql import mysql_client
from httpfpt.enums.assert_type import AssertType
from httpfpt.enums.sql_type import SqlType

Expand Down
2 changes: 1 addition & 1 deletion httpfpt/utils/auth_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from httpfpt.common.errors import AuthError, SendRequestError
from httpfpt.common.yaml_handler import read_yaml
from httpfpt.core.path_conf import httpfpt_path
from httpfpt.db.redis_db import redis_client
from httpfpt.db.redis import redis_client
from httpfpt.enums.request.auth import AuthType
from httpfpt.utils.enum_control import get_enum_values

Expand Down
2 changes: 1 addition & 1 deletion httpfpt/utils/relate_testcase_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from httpfpt.common.errors import CorrelateTestCaseError, JsonPathFindError
from httpfpt.common.log import log
from httpfpt.common.variable_cache import variable_cache
from httpfpt.db.redis_db import redis_client
from httpfpt.db.redis import redis_client
from httpfpt.enums.setup_type import SetupType
from httpfpt.utils.allure_control import allure_step
from httpfpt.utils.request.vars_extractor import var_extractor
Expand Down
2 changes: 1 addition & 1 deletion httpfpt/utils/request/case_data_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from httpfpt.common.errors import RequestDataParseError
from httpfpt.common.log import log
from httpfpt.common.yaml_handler import read_yaml
from httpfpt.db.redis_db import redis_client
from httpfpt.db.redis import redis_client
from httpfpt.schemas.case_data import CaseCacheData
from httpfpt.utils.file_control import get_file_hash, get_file_property, search_all_case_data_files
from httpfpt.utils.pydantic_parser import parse_error
Expand Down
2 changes: 1 addition & 1 deletion httpfpt/utils/request/request_data_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from httpfpt.common.log import log
from httpfpt.core.get_conf import httpfpt_config
from httpfpt.core.path_conf import httpfpt_path
from httpfpt.db.mysql_db import mysql_client
from httpfpt.db.mysql import mysql_client
from httpfpt.enums.allure_severity_type import SeverityType
from httpfpt.enums.request.auth import AuthType
from httpfpt.enums.request.body import BodyType
Expand Down

0 comments on commit c1d2a12

Please sign in to comment.