Skip to content

Commit 933cff4

Browse files
committed
tests: use buttercup idioms
1 parent a699336 commit 933cff4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/test-kele.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -971,8 +971,8 @@ metadata:
971971
:context "development"
972972
:verb 'deletecollection)))
973973
(expect (listp candidates) :to-be-truthy)
974-
(expect (member "pods" candidates) :to-be-truthy)
974+
(expect "pods" :to-be-in candidates)
975975
;; componentstatuses doesn't support deletecollection
976-
(expect (member "componentstatuses" candidates) :not :to-be-truthy))))
976+
(expect "componentstatuses" :not :to-be-in candidates))))
977977

978978
;;; test-kele.el ends here

0 commit comments

Comments
 (0)