From e5adcd181fb59d8f2d1f2157cdf433510c8c96ca Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Tue, 20 Oct 2020 16:45:39 +0100 Subject: [PATCH] update test --- .../test/groovy/com/muwire/core/hostcache/HostCacheTest.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/test/groovy/com/muwire/core/hostcache/HostCacheTest.groovy b/core/src/test/groovy/com/muwire/core/hostcache/HostCacheTest.groovy index 5b33ae9e..dba22bcc 100644 --- a/core/src/test/groovy/com/muwire/core/hostcache/HostCacheTest.groovy +++ b/core/src/test/groovy/com/muwire/core/hostcache/HostCacheTest.groovy @@ -53,7 +53,7 @@ class HostCacheTest { private void initMocks() { trust = trustMock.proxyInstance() settings = settingsMock.proxyInstance() - cache = new HostCache(trust, persist, 100, settings, new Destination()) + cache = new SimpleHostCache(trust, persist, 100, settings, new Destination()) cache.start() Thread.sleep(150) }