Motivation comes from #12618 (comment). We should change signature of retrieveKafkaBrokerSANs, because using and hiding only 2 parameters (i.e.,namespaceName, clusterName) into whole TestStorage object are making things less readable. With having explicitly specified it is better from test case POV.
So we should change
retrieveKafkaBrokerSANs(final TestStorage testStorage)
to
retrieveKafkaBrokerSANs(final String namespaceName, String clusterName)
Motivation comes from #12618 (comment). We should change signature of
retrieveKafkaBrokerSANs, because using and hiding only 2 parameters (i.e.,namespaceName, clusterName) into whole TestStorage object are making things less readable. With having explicitly specified it is better from test case POV.So we should change
to