@@ -319,6 +319,7 @@ class ToolRepositoryRemoteSpec extends Specification with Mockito with EitherMat
319319 toolUuid = ArgumentMatchers .any[String ],
320320 cursor = ArgumentMatchers .any[Option [String ]],
321321 limit = ArgumentMatchers .any[Option [Int ]],
322+ enabled = ArgumentMatchers .any[Option [Boolean ]],
322323 headers = ArgumentMatchers .any[List [HttpHeader ]])).thenReturn(
323324 eitherListToolPatternsResponse(ListPatternsResponse .OK (PatternListResponse (Vector (patternA), None ))),
324325 eitherListToolPatternsResponse(ListPatternsResponse .OK (PatternListResponse (Vector (patternB), None ))))
@@ -347,6 +348,7 @@ class ToolRepositoryRemoteSpec extends Specification with Mockito with EitherMat
347348 toolUuid = ArgumentMatchers .any[String ],
348349 cursor = ArgumentMatchers .any[Option [String ]],
349350 limit = ArgumentMatchers .any[Option [Int ]],
351+ enabled = ArgumentMatchers .any[Option [Boolean ]],
350352 headers = ArgumentMatchers .any[List [HttpHeader ]])).thenReturn(
351353 eitherListToolPatternsResponse(
352354 ListPatternsResponse .OK (PatternListResponse (Vector (patternA), Some (paginationInfo)))),
@@ -375,6 +377,7 @@ class ToolRepositoryRemoteSpec extends Specification with Mockito with EitherMat
375377 toolUuid = ArgumentMatchers .any[String ],
376378 cursor = ArgumentMatchers .any[Option [String ]],
377379 limit = ArgumentMatchers .any[Option [Int ]],
380+ enabled = ArgumentMatchers .any[Option [Boolean ]],
378381 headers = ArgumentMatchers .any[List [HttpHeader ]]))
379382 .thenReturn(eitherListToolPatternsResponse(ListPatternsResponse .BadRequest (BadRequest (" error" ))))
380383
@@ -399,6 +402,7 @@ class ToolRepositoryRemoteSpec extends Specification with Mockito with EitherMat
399402 toolUuid = ArgumentMatchers .any[String ],
400403 cursor = ArgumentMatchers .any[Option [String ]],
401404 limit = ArgumentMatchers .any[Option [Int ]],
405+ enabled = ArgumentMatchers .any[Option [Boolean ]],
402406 headers = ArgumentMatchers .any[List [HttpHeader ]]))
403407 .thenReturn(eitherListToolPatternsResponse(ListPatternsResponse .BadRequest (BadRequest (" error" ))))
404408
@@ -423,6 +427,7 @@ class ToolRepositoryRemoteSpec extends Specification with Mockito with EitherMat
423427 toolUuid = ArgumentMatchers .any[String ],
424428 cursor = ArgumentMatchers .any[Option [String ]],
425429 limit = ArgumentMatchers .any[Option [Int ]],
430+ enabled = ArgumentMatchers .any[Option [Boolean ]],
426431 headers = ArgumentMatchers .any[List [HttpHeader ]]))
427432 .thenReturn(eitherListToolPatternsResponse(ListPatternsResponse .BadRequest (BadRequest (" error" ))))
428433
@@ -443,6 +448,7 @@ class ToolRepositoryRemoteSpec extends Specification with Mockito with EitherMat
443448 toolUuid = ArgumentMatchers .any[String ],
444449 cursor = ArgumentMatchers .any[Option [String ]],
445450 limit = ArgumentMatchers .any[Option [Int ]],
451+ enabled = ArgumentMatchers .any[Option [Boolean ]],
446452 headers = ArgumentMatchers .any[List [HttpHeader ]]))
447453 .thenReturn(eitherListToolPatternsResponse(ListPatternsResponse .NotFound (NotFound (" error" ))))
448454
@@ -464,6 +470,7 @@ class ToolRepositoryRemoteSpec extends Specification with Mockito with EitherMat
464470 toolUuid = ArgumentMatchers .any[String ],
465471 cursor = ArgumentMatchers .any[Option [String ]],
466472 limit = ArgumentMatchers .any[Option [Int ]],
473+ enabled = ArgumentMatchers .any[Option [Boolean ]],
467474 headers = ArgumentMatchers .any[List [HttpHeader ]])).thenReturn(
468475 eitherListToolPatternsResponse(ListPatternsResponse .InternalServerError (InternalServerError (" error" ))))
469476
0 commit comments