From bf47a7ad3ccece74cd38a9cff51b4c1fbb2317ac Mon Sep 17 00:00:00 2001 From: To-om Date: Tue, 2 Mar 2021 09:16:31 +0100 Subject: [PATCH] #1731 Fix test compilation error --- thehive/test/org/thp/thehive/services/TagSrvTest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thehive/test/org/thp/thehive/services/TagSrvTest.scala b/thehive/test/org/thp/thehive/services/TagSrvTest.scala index a24aa35b95..38d74028be 100644 --- a/thehive/test/org/thp/thehive/services/TagSrvTest.scala +++ b/thehive/test/org/thp/thehive/services/TagSrvTest.scala @@ -47,7 +47,7 @@ class TagSrvTest extends PlaySpecification with TestAppBuilder { tag.map(_.namespace) must beEqualTo(Success(s"_freetags_$orgId")) tag.map(_.predicate) must beEqualTo(Success("afreetag")) tag.map(_.predicate) must beEqualTo(Success("afreetag")) - tag.map(_.colour) must beEqualTo(Success(app[TagSrv].defaultColour)) + tag.map(_.colour) must beEqualTo(Success(app[TagSrv].freeTagColour)) } } }