Skip to content

Commit 5306fc1

Browse files
committed
tests
1 parent e31b5c1 commit 5306fc1

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

splitio/tests/test_splits.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,16 @@
1111

1212
from splitio.splits import (InMemorySplitFetcher, SelfRefreshingSplitFetcher, SplitChangeFetcher,
1313
ApiSplitChangeFetcher, SplitParser, AllKeysSplit,
14-
CacheBasedSplitFetcher)
14+
CacheBasedSplitFetcher, HashAlgorithm)
1515
from splitio.matchers import (AndCombiner, AllKeysMatcher, UserDefinedSegmentMatcher,
1616
WhitelistMatcher, AttributeMatcher)
1717
from splitio.tests.utils import MockUtilsMixin
18-
18+
from os.path import join, dirname
19+
from splitio.hashfns import _murmur_hash, get_hash_fn
20+
from splitio.hashfns.legacy import legacy_hash
21+
from splitio.redis_support import get_redis, RedisSegmentCache, RedisSplitParser
22+
from splitio.uwsgi import get_uwsgi, UWSGISegmentCache, UWSGISplitParser
23+
import json
1924

2025
class InMemorySplitFetcherTests(TestCase):
2126
def setUp(self):

0 commit comments

Comments
 (0)