Skip to content
Snippets Groups Projects
Commit bc54d863 authored by Rob Adams's avatar Rob Adams
Browse files

Fix unit test

parent b6647d02
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,8 @@ import java.util.ArrayList;
import java.util.List;
import net.floodlightcontroller.core.module.FloodlightModuleContext;
import net.floodlightcontroller.debugcounter.IDebugCounterService;
import net.floodlightcontroller.debugcounter.NullDebugCounter;
import net.floodlightcontroller.threadpool.IThreadPoolService;
import net.floodlightcontroller.threadpool.ThreadPool;
......@@ -30,6 +32,7 @@ public class RemoteStoreTest extends AbstractStoreT<ByteArray,byte[]> {
tp = new ThreadPool();
fmc.addService(IThreadPoolService.class, tp);
fmc.addService(IDebugCounterService.class, new NullDebugCounter());
syncManager = new SyncManager();
syncManager.registerStore("local", Scope.LOCAL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment