comparison tests/unit/test_pubsub-cache.py @ 4071:4b842c1fb686

refactoring: renamed `sat` package to `libervia.backend`
author Goffi <goffi@goffi.org>
date Fri, 02 Jun 2023 11:49:51 +0200
parents 524856bd7b19
children f1d0cde61af7
comparison
equal deleted inserted replaced
4070:d10748475025 4071:4b842c1fb686
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. 17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 18
19 from twisted.internet import defer 19 from twisted.internet import defer
20 from pytest_twisted import ensureDeferred as ed 20 from pytest_twisted import ensureDeferred as ed
21 from unittest.mock import MagicMock, patch 21 from unittest.mock import MagicMock, patch
22 from sat.memory.sqla import PubsubNode, SyncState 22 from libervia.backend.memory.sqla import PubsubNode, SyncState
23 from sat.core.constants import Const as C 23 from libervia.backend.core.constants import Const as C
24 24
25 25
26 class TestPubsubCache: 26 class TestPubsubCache:
27 27
28 @ed 28 @ed