Skip to content

Commit

Permalink
Fixes #17411: Stacktrace in test introduce in #17341
Browse files Browse the repository at this point in the history
  • Loading branch information
fanf committed May 14, 2020
1 parent fc3c1cd commit d41d022
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -154,7 +154,9 @@ class CachedFindRuleNodeStatusReportsTest extends Specification {
// store all updated nodes
var updated: List[NodeId] = Nil

override def complianceRepository: ComplianceRepository = ???
override def complianceRepository: ComplianceRepository = new ComplianceRepository {
override def saveRunCompliance(compliance: List[NodeStatusReport]): Box[List[NodeStatusReport]] = Full(Nil)
}

override def defaultFindRuleNodeStatusReports = new DefaultFindRuleNodeStatusReports() {
override def confExpectedRepo: FindExpectedReportRepository = ???
Expand Down

0 comments on commit d41d022

Please sign in to comment.