Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
Signed-off-by: clux <sszynrae@gmail.com>
  • Loading branch information
clux committed Apr 24, 2022
1 parent 9b4a5d3 commit 41a5bf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kube/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -403,8 +403,8 @@ mod test {
assert_eq!(ar.kind, gvk.kind);

// check all non-excluded groups that are iterable
let mut groups = discovery.groups().peekable();
let firstgroup = groups.peek().unwrap();
let mut groups = discovery.groups_alphabetical().into_iter();
let firstgroup = groups.next().unwrap();
assert_eq!(firstgroup.name, ApiGroup::CORE_GROUP);
for group in groups {
for (ar, caps) in group.recommended_resources() {
Expand Down

0 comments on commit 41a5bf8

Please sign in to comment.