Skip to content

Commit

Permalink
fix fabric8io#4460 renaming DefaultKubernetesClientTest
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Oct 4, 2022
1 parent cf01c37 commit 2e273ee
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -51,10 +51,10 @@
/**
* @author wangyushuai2@jd.com
*/
class DefaultKubernetesClientTest {
class KubernetesClientImplTest {

private static final String TEST_CONFIG_YML_FILE = Utils
.filePath(DefaultKubernetesClientTest.class.getResource("/test-config.yml"));
.filePath(KubernetesClientImplTest.class.getResource("/test-config.yml"));

private KubernetesClientImpl defaultKubernetesClient;

Expand Down Expand Up @@ -98,7 +98,7 @@ void testInitClientWithDefaultConfiguration() {
void loadWithWindowsLineSeparatorsString() throws Exception {
// Given
final List<String> fileLines = Files.readAllLines(
new File(DefaultKubernetesClientTest.class.getResource("/test-list.yml").getFile()).toPath(), StandardCharsets.UTF_8);
new File(KubernetesClientImplTest.class.getResource("/test-list.yml").getFile()).toPath(), StandardCharsets.UTF_8);
final String crlfFile = String.join(" \r\n", fileLines);
// When
final List<HasMetadata> result = new KubernetesClientImpl()
Expand Down

0 comments on commit 2e273ee

Please sign in to comment.