Skip to content

Commit

Permalink
fix kind of KubernetesListHandler to pass previous failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
ahgittin committed Jul 8, 2020
1 parent 027027b commit f6ce84f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@ public class KubernetesListHandler implements ResourceHandler<KubernetesList, Ku

private static final Logger LOGGER = LoggerFactory.getLogger(KubernetesListHandler.class);

private static final String KIND = new KubernetesList().getKind();

@Override
public String getKind() {
return Service.class.getSimpleName();
return KIND;
}

@Override
Expand Down

0 comments on commit f6ce84f

Please sign in to comment.