From b11b758d76562f9441ec53749e63b06505248a29 Mon Sep 17 00:00:00 2001 From: To-om Date: Mon, 7 Sep 2020 17:53:02 +0200 Subject: [PATCH] #1483 Fix tests --- thehive/test/org/thp/thehive/TestAppBuilder.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thehive/test/org/thp/thehive/TestAppBuilder.scala b/thehive/test/org/thp/thehive/TestAppBuilder.scala index a870878ad1..e46cae76ec 100644 --- a/thehive/test/org/thp/thehive/TestAppBuilder.scala +++ b/thehive/test/org/thp/thehive/TestAppBuilder.scala @@ -31,7 +31,7 @@ trait TestAppBuilder { .bind[UserSrv, LocalUserSrv] .bind[StorageSrv, LocalFileSystemStorageSrv] .bind[Schema, TheHiveSchemaDefinition] - .bind[QueryExecutor, TheHiveQueryExecutor] + .bindNamed[QueryExecutor, TheHiveQueryExecutor]("v0") .multiBind[AuthSrvProvider](classOf[LocalPasswordAuthProvider], classOf[LocalKeyAuthProvider], classOf[HeaderAuthProvider]) .multiBind[NotifierProvider](classOf[AppendToFileProvider]) .multiBind[NotifierProvider](classOf[EmailerProvider])