From ccbd7a6dea68303fb7ec6f777f0e6b8d9e6c7773 Mon Sep 17 00:00:00 2001 From: wang-guangge Date: Wed, 15 Nov 2023 10:35:42 +0800 Subject: [PATCH] fix bug in test_hotpatch.py --- hotpatch/test_hotpatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hotpatch/test_hotpatch.py b/hotpatch/test_hotpatch.py index f46faed..e903d55 100644 --- a/hotpatch/test_hotpatch.py +++ b/hotpatch/test_hotpatch.py @@ -13,8 +13,8 @@ import unittest from unittest import mock -from .hotpatch import HotpatchCommand -from .syscare import SUCCEED, FAIL +from .hotpatch_ops import HotpatchCommand +from .syscare import FAIL, SUCCEED class HotpatchTestCase(unittest.TestCase): -- 2.27.0